diff options
-rw-r--r-- | Cargo.toml | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ [package] name = "tdlib-rs" -version = "0.1.0" +version = "0.1.1" authors = ["syn <isaqtm@gmail.com>"] edition = "2018" @@ -12,10 +12,10 @@ 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 +# maybe we should define it ourselves and drop futures dependency futures = "0.3" -tokio = { version = "0.3", features = ["rt"] } +tokio = { version = "1.0", features = ["rt"] } # TODO: get rid of crossbeam and use std if possible crossbeam = "0.8" |