summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorsyn <isaqtm@gmail.com>2021-01-16 02:53:56 +0300
committersyn <isaqtm@gmail.com>2021-01-16 02:53:56 +0300
commit8d357e27aaf60aebb116e26c4949cf4c1b7dd928 (patch)
tree2dba055a8ca4f54de9bff28b2aeec459f3e912d1 /Cargo.toml
parentdd5a668a5167010ac288106b1da6a10ea808c57b (diff)
downloadtdlib-rs-8d357e27aaf60aebb116e26c4949cf4c1b7dd928.tar.gz
bump tokio to 1.0
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 443f87c..d19dcaa 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"