diff options
author | syn <isaqtm@gmail.com> | 2020-05-19 20:54:45 +0300 |
---|---|---|
committer | syn <isaqtm@gmail.com> | 2020-05-19 20:54:45 +0300 |
commit | c89b1acb6e5d5755dc79c1f5643c915624a4c4c3 (patch) | |
tree | 2b51d52df177db1b14eb6666236a131356e5452f /Cargo.toml | |
download | pert-c89b1acb6e5d5755dc79c1f5643c915624a4c4c3.tar.gz |
Some kind of working code
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"] |