diff options
author | syn <isaqtm@gmail.com> | 2021-01-08 01:21:48 +0300 |
---|---|---|
committer | syn <isaqtm@gmail.com> | 2021-01-08 01:21:48 +0300 |
commit | 7e41b162fb1a41d026814c7e4586aa6f6a627fbb (patch) | |
tree | beedf614593ceb3555659aa98382c8950a22bae8 /Cargo.toml | |
download | tdlib-rs-7e41b162fb1a41d026814c7e4586aa6f6a627fbb.tar.gz |
Initial commit
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..443f87c --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,31 @@ +[package] +name = "tdlib-rs" +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] +libc = "0.2" +tdlib-sys = { version = "1.7.0", path = "../tdlib-sys" } +thiserror = "1.0" + +# TODO: the only thing we need from futures-rs is BoxFuture. +# maybe we shold define it ourselves and drop futures dependency +futures = "0.3" + +tokio = { version = "0.3", features = ["rt"] } + +# TODO: get rid of crossbeam and use std if possible +crossbeam = "0.8" + +serde = "1.0" +serde_json = "1.0" +serde_derive = "1.0" + +# TODO: make logging a feature +log = "0.4" + +[dev-dependencies] +tokio = { version = "0.3", features = ["rt", "rt-multi-thread", "macros"] } |