From d8c6e1bd14ff655891cfb899f5ac0bca8704e3bc Mon Sep 17 00:00:00 2001 From: _ <> Date: Sun, 18 Jul 2021 17:33:34 +0000 Subject: [PATCH] :arrow_up: update to Tokio 1.8.x to get a feature I want --- Cargo.lock | 4 ++-- crates/debug_proxy/Cargo.toml | 2 +- crates/metrics_test/Cargo.toml | 2 +- crates/ptth_core/Cargo.toml | 2 +- crates/ptth_file_server_bin/Cargo.toml | 2 +- crates/ptth_kv/Cargo.toml | 2 +- crates/ptth_relay/Cargo.toml | 2 +- crates/ptth_server/Cargo.toml | 2 +- prototypes/quic_demo/Cargo.toml | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b9dad40..3093796 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/crates/debug_proxy/Cargo.toml b/crates/debug_proxy/Cargo.toml index c9c5468..535b92b 100644 --- a/crates/debug_proxy/Cargo.toml +++ b/crates/debug_proxy/Cargo.toml @@ -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" diff --git a/crates/metrics_test/Cargo.toml b/crates/metrics_test/Cargo.toml index fef35f8..44516f7 100644 --- a/crates/metrics_test/Cargo.toml +++ b/crates/metrics_test/Cargo.toml @@ -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"] } diff --git a/crates/ptth_core/Cargo.toml b/crates/ptth_core/Cargo.toml index 412637e..f534088 100644 --- a/crates/ptth_core/Cargo.toml +++ b/crates/ptth_core/Cargo.toml @@ -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" diff --git a/crates/ptth_file_server_bin/Cargo.toml b/crates/ptth_file_server_bin/Cargo.toml index 397bd73..fafa021 100644 --- a/crates/ptth_file_server_bin/Cargo.toml +++ b/crates/ptth_file_server_bin/Cargo.toml @@ -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" diff --git a/crates/ptth_kv/Cargo.toml b/crates/ptth_kv/Cargo.toml index cae536d..cc5f6b2 100644 --- a/crates/ptth_kv/Cargo.toml +++ b/crates/ptth_kv/Cargo.toml @@ -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"] } diff --git a/crates/ptth_relay/Cargo.toml b/crates/ptth_relay/Cargo.toml index abdf111..37c50f4 100644 --- a/crates/ptth_relay/Cargo.toml +++ b/crates/ptth_relay/Cargo.toml @@ -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" diff --git a/crates/ptth_server/Cargo.toml b/crates/ptth_server/Cargo.toml index a27958c..12eda02 100644 --- a/crates/ptth_server/Cargo.toml +++ b/crates/ptth_server/Cargo.toml @@ -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" diff --git a/prototypes/quic_demo/Cargo.toml b/prototypes/quic_demo/Cargo.toml index 108087e..bbf1615 100644 --- a/prototypes/quic_demo/Cargo.toml +++ b/prototypes/quic_demo/Cargo.toml @@ -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"