Avoid Tokio 1.6 due to tokio-rs/tokio#3803.

This commit is contained in:
Sergio Benitez 2021-05-27 15:25:57 -07:00
parent 41d7138540
commit 1f1976f8bf
3 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ memcache_pool = ["memcache", "r2d2-memcache"]
[dependencies]
r2d2 = "0.8"
tokio = { version = "1.4", features = ["rt", "rt-multi-thread"] }
tokio = { version = ">=1.4,<1.6", features = ["rt", "rt-multi-thread"] }
serde = { version = "1.0", features = ["derive"] }
diesel = { version = "1.0", default-features = false, optional = true }

View File

@ -29,7 +29,7 @@ mime = "0.3.13"
time = "0.2.11"
indexmap = { version = "1.5.2", features = ["std"] }
tokio-rustls = { version = "0.22.0", optional = true }
tokio = { version = "1.0", features = ["net", "sync", "time"] }
tokio = { version = ">=1.4,<1.6", features = ["net", "sync", "time"] }
log = "0.4"
ref-cast = "1.0"
uncased = "0.9.6"

View File

@ -70,7 +70,7 @@ path = "../http"
features = ["serde"]
[dependencies.tokio]
version = "1.0"
version = ">=1.4,<1.6"
features = ["fs", "io-std", "io-util", "rt-multi-thread", "sync", "signal", "macros"]
[dependencies.tokio-util]