From 76aeac09b0bf51796ba3d22194019607ac35b6fb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 4 Feb 2023 01:00:28 +0000 Subject: [PATCH] Bump tokio from 0.2.24 to 1.18.5 Bumps [tokio](https://github.com/tokio-rs/tokio) from 0.2.24 to 1.18.5. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-0.2.24...tokio-1.18.5) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 33 +++++++++++++++++++++------------ selfhost-dashboard/Cargo.toml | 2 +- 2 files changed, 22 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ffe446d..0bd5b85 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -274,7 +274,7 @@ dependencies = [ "async-trait", "crossbeam-queue", "num_cpus", - "tokio", + "tokio 0.2.25", ] [[package]] @@ -287,7 +287,7 @@ dependencies = [ "deadpool", "futures", "log", - "tokio", + "tokio 0.2.25", "tokio-postgres", ] @@ -501,7 +501,7 @@ dependencies = [ "http", "indexmap", "slab", - "tokio", + "tokio 0.2.25", "tokio-util", "tracing", "tracing-futures", @@ -605,7 +605,7 @@ dependencies = [ "itoa", "pin-project 1.0.4", "socket2", - "tokio", + "tokio 0.2.25", "tower-service", "tracing", "want", @@ -1178,7 +1178,7 @@ dependencies = [ "slog", "sloggers", "thiserror", - "tokio", + "tokio 1.18.5", "tokio-postgres", "tokio-test", "toml", @@ -1454,9 +1454,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "0.2.24" +version = "0.2.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "099837d3464c16a808060bb3f02263b412f6fafcb5d01c533d309985fbeebe48" +checksum = "6703a273949a90131b290be1fe7b039d0fc884aa1935860dfcbe056f28cd8092" dependencies = [ "bytes 0.5.6", "fnv", @@ -1469,14 +1469,23 @@ dependencies = [ "mio-uds", "pin-project-lite 0.1.11", "slab", +] + +[[package]] +name = "tokio" +version = "1.18.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e050c618355082ae5a89ec63bbf897225d5ffe84c7c4e036874e4d185a5044e" +dependencies = [ + "pin-project-lite 0.2.4", "tokio-macros", ] [[package]] name = "tokio-macros" -version = "0.2.6" +version = "1.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e44da00bfc73a25f814cd8d7e57a68a5c31b74b3152a0a1d1f590c97ed06265a" +checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8" dependencies = [ "proc-macro2", "quote", @@ -1501,7 +1510,7 @@ dependencies = [ "pin-project-lite 0.1.11", "postgres-protocol", "postgres-types", - "tokio", + "tokio 0.2.25", "tokio-util", ] @@ -1513,7 +1522,7 @@ checksum = "ed0049c119b6d505c4447f5c64873636c7af6c75ab0d45fd9f618d82acb8016d" dependencies = [ "bytes 0.5.6", "futures-core", - "tokio", + "tokio 0.2.25", ] [[package]] @@ -1527,7 +1536,7 @@ dependencies = [ "futures-sink", "log", "pin-project-lite 0.1.11", - "tokio", + "tokio 0.2.25", ] [[package]] diff --git a/selfhost-dashboard/Cargo.toml b/selfhost-dashboard/Cargo.toml index 870bab2..b480fd6 100644 --- a/selfhost-dashboard/Cargo.toml +++ b/selfhost-dashboard/Cargo.toml @@ -19,7 +19,7 @@ scrypt = { version = "0.4.1", default_features = false } rand = "0.7.3" void = "1.0.2" thiserror = "1.0.20" -tokio = { version = "0.2.22", features = ["macros"] } +tokio = { version = "1.18.5", features = ["macros"] } toml = "0.5.6" serde_json = "1.0.58" configure_me = "0.4.0"