diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..0e74c3d --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "airception" +version = "0.1.0" +authors = ["syn <isaqtm@gmail.com>"] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +tdlib-rs = { path = "../tdlib-rs" } +tokio = { version = "0.3", features = ["rt", "macros", "rt-multi-thread"] } +futures = "0.3" + +log = "0.4" +env_logger = "0.8" +dotenv = "0.15" + +redis = { version = "0.17", features = ["connection-manager"] } + +serde_json = "1.0" +serde = "1.0" +serde_derive = "1.0" + +thiserror = "1.0" |