diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..31bac94 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "pert" +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] +"rust-tdlib" = { path = "rust-tdlib" } +# serde = { version = "1", features = ["derive"] } +json = "0.12" +dotenv = "0.15" +log = "0.4" +env_logger = "0.7" +futures = "0.3" +uuid = { version = "0.8", features = ["v4"] } +[dependencies.tokio] + version = "0.2" + features = ["full"] |