/ Cargo.toml
Cargo.toml
1 [package] 2 name = "bouncer" 3 version = "1.0.0" 4 authors = ["louise <email@luisignac.io>"] 5 edition = "2018" 6 license = "MIT" 7 description = "Bouncer allows you handle your requests to third-party services with no worries, perhaps some worries." 8 documentation = "https://github.com/thelastinuit/bouncer" 9 homepage = "https://github.com/thelastinuit/Bouncer" 10 repository = "https://github.com/thelastinuit/bouncer.git" 11 12 [dependencies] 13 redis = { "version" = "0.16.0" } 14 serde = { "version" = "1.0.114", features = ["derive"] } 15 serde_json = { "version" = "1.0" } 16 tokio = { "version" = "0.2.21", features = ["full"] }