⬆️ update to Tokio 1.8.x to get a feature I want

main
_ 2021-07-18 17:33:34 +00:00
parent d292693856
commit d8c6e1bd14
9 changed files with 10 additions and 10 deletions

4
Cargo.lock generated
View File

@ -1888,9 +1888,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tokio"
version = "1.4.0"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "134af885d758d645f0f0505c9a8b3f9bf8a348fd822e112ab5248138348f1722"
checksum = "98c8b05dc14c75ea83d63dd391100353789f5f24b8b3866542a5e85c8be8e985"
dependencies = [
"autocfg",
"bytes",

View File

@ -14,7 +14,7 @@ futures-util = "0.3.8"
http = "0.2.1"
hyper = { version = "0.14.4", features = ["server", "stream"] }
rusty_ulid = "0.10.1"
tokio = "1.2.0"
tokio = "1.8.1"
tokio-stream = "0.1.3"
tracing = "0.1.21"
tracing-subscriber = "0.2.15"

View File

@ -8,4 +8,4 @@ edition = "2018"
[dependencies]
devtimer = "4.0.1"
tokio = { version = "1.4.0", features = ["full"] }
tokio = { version = "1.8.1", features = ["full"] }

View File

@ -18,6 +18,6 @@ hyper = "0.14.4"
rand = "0.8.3"
serde = {version = "1.0.124", features = ["derive"]}
thiserror = "1.0.24"
tokio = { version = "1.2.0", features = ["full"] }
tokio = { version = "1.8.1", features = ["full"] }
tracing = "0.1.25"
tracing-futures = "0.2.5"

View File

@ -15,7 +15,7 @@ http = "0.2.1"
hyper = { version = "0.14.4", features = ["http1", "server", "stream"] }
serde = {version = "1.0.124", features = ["derive"]}
structopt = "0.3.21"
tokio = { version = "1.2.0", features = [] }
tokio = { version = "1.8.1", features = [] }
tokio-stream = "0.1.3"
tracing = "0.1.25"
tracing-subscriber = "0.2.16"

View File

@ -9,4 +9,4 @@ anyhow = "1.0.38"
base64 = "0.13.0"
hyper = { version = "0.14.4", features = ["full"] }
thiserror = "1.0.22"
tokio = { version = "1.2.0", features = ["full"] }
tokio = { version = "1.8.1", features = ["full"] }

View File

@ -30,7 +30,7 @@ serde = { version = "1.0.117", features = ["derive"] }
serde_json = "1.0.60"
serde_urlencoded = "0.7.0"
thiserror = "1.0.22"
tokio = { version = "1.4.0", features = [] }
tokio = { version = "1.8.1", features = [] }
tokio-stream = "0.1.3"
toml = "0.5.7"
tracing = "0.1.25"

View File

@ -34,7 +34,7 @@ serde = {version = "1.0.117", features = ["derive"]}
serde_json = "1.0.60"
structopt = "0.3.20"
thiserror = "1.0.24"
tokio = { version = "1.4.0", features = [] }
tokio = { version = "1.8.1", features = [] }
tokio-stream = "0.1.3"
tracing = "0.1.25"
tracing-futures = "0.2.5"

View File

@ -14,6 +14,6 @@ quinn = "0.7.2"
rcgen = "0.8.11"
rmp-serde = "0.15.5"
structopt = "0.3.20"
tokio = { version = "1.4.0", features = ["full"] }
tokio = { version = "1.8.1", features = ["full"] }
tracing-subscriber = "0.2.16"
tracing = "0.1.25"