diff options
author | syn <isaqtm@gmail.com> | 2021-01-16 02:53:56 +0300 |
---|---|---|
committer | syn <isaqtm@gmail.com> | 2021-01-16 02:53:56 +0300 |
commit | 8d357e27aaf60aebb116e26c4949cf4c1b7dd928 (patch) | |
tree | 2dba055a8ca4f54de9bff28b2aeec459f3e912d1 /Cargo.toml | |
parent | dd5a668a5167010ac288106b1da6a10ea808c57b (diff) | |
download | tdlib-rs-8d357e27aaf60aebb116e26c4949cf4c1b7dd928.tar.gz |
bump tokio to 1.0
Diffstat (limited to 'Cargo.toml')
-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" |