From ee32b91309cd41e9c746c00c45c79af5a2b1f646 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 18 Jan 2023 11:17:08 +0000 Subject: [PATCH] Bump tokio from 1.21.2 to 1.24.2 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.21.2 to 1.24.2. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/commits) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 6 +++--- crates/common/Cargo.toml | 2 +- crates/container/Cargo.toml | 2 +- crates/network/Cargo.toml | 2 +- crates/sandbox/Cargo.toml | 4 ++-- crates/server/Cargo.toml | 2 +- crates/services/Cargo.toml | 2 +- tests/Cargo.toml | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2536a9cf..e5cb2da0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1748,9 +1748,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.21.2" +version = "1.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9e03c497dc955702ba729190dc4aac6f2a0ce97f913e5b1b5912fc5039d9099" +checksum = "597a12a59981d9e3c38d216785b0c37399f6e415e8d0712047620f189371b0bb" dependencies = [ "autocfg", "bytes", @@ -1763,7 +1763,7 @@ dependencies = [ "signal-hook-registry", "socket2", "tokio-macros", - "winapi", + "windows-sys", ] [[package]] diff --git a/crates/common/Cargo.toml b/crates/common/Cargo.toml index 01c33a6f..a88341aa 100644 --- a/crates/common/Cargo.toml +++ b/crates/common/Cargo.toml @@ -23,7 +23,7 @@ oci-spec = { version = "0.5.8", features = ["runtime"] } serde = { version = "1.0.147", features = ["derive"] } serde_json = "1.0.87" strum = { version = "0.24.1", features = ["derive"] } -tokio = { version = "1.21.2", features = ["full"] } +tokio = { version = "1.24.2", features = ["full"] } tonic = "0.8.2" [dev-dependencies] diff --git a/crates/container/Cargo.toml b/crates/container/Cargo.toml index 95f3bb7d..73c42fa7 100644 --- a/crates/container/Cargo.toml +++ b/crates/container/Cargo.toml @@ -25,7 +25,7 @@ log = { version = "0.4.17", features = ["serde", "std"] } oci-spec = { version = "0.5.8", features = ["runtime"] } serde = { version = "1.0.147", features = ["derive"] } strum = { version = "0.24.1", features = ["derive"] } -tokio = { version = "1.21.2", features = ["full"] } +tokio = { version = "1.24.2", features = ["full"] } [dev-dependencies] which = "4.3.0" diff --git a/crates/network/Cargo.toml b/crates/network/Cargo.toml index 2f741a3d..ad412d3e 100644 --- a/crates/network/Cargo.toml +++ b/crates/network/Cargo.toml @@ -36,7 +36,7 @@ strum = { version = "0.24.1", features = ["derive"] } storage = { path = "../storage" } sandbox = { path = "../sandbox" } sysctl = "0.5.2" -tokio = { version = "1.21.2", features = ["full"] } +tokio = { version = "1.24.2", features = ["full"] } which = "4.3.0" [dev-dependencies] diff --git a/crates/sandbox/Cargo.toml b/crates/sandbox/Cargo.toml index 0b594c73..b054f522 100644 --- a/crates/sandbox/Cargo.toml +++ b/crates/sandbox/Cargo.toml @@ -23,13 +23,13 @@ common = { path= "../common" } derive_builder = "0.11.2" dyn-clone = "1.0.9" getset = "0.1.2" -tokio = { version = "1.21.2", features = ["process"] } +tokio = { version = "1.24.2", features = ["process"] } strum = { version = "0.24.1", features = ["derive"] } uuid = { version = "1.2.2", features = ["v4"] } which = "4.3.0" [dev-dependencies] anyhow = "1.0.66" -tokio = { version = "1.21.2", features = ["macros"] } +tokio = { version = "1.24.2", features = ["macros"] } tempfile = "3.3.0" nix = "0.25.0" diff --git a/crates/server/Cargo.toml b/crates/server/Cargo.toml index 9b35f0bb..39a584ac 100644 --- a/crates/server/Cargo.toml +++ b/crates/server/Cargo.toml @@ -18,4 +18,4 @@ categories = ["network-programming", "api-bindings"] [dependencies] anyhow = "1.0.66" services = { path = "../services" } -tokio = { version = "1.21.2", features = ["full"] } +tokio = { version = "1.24.2", features = ["full"] } diff --git a/crates/services/Cargo.toml b/crates/services/Cargo.toml index 5150e25c..2cddedff 100644 --- a/crates/services/Cargo.toml +++ b/crates/services/Cargo.toml @@ -30,7 +30,7 @@ tonic = "0.8.2" # TODO: these dependencies are only needed for the server # should be moved to the server crate lazy_static = "1.4.0" -tokio = { version = "1.21.2", features = ["full"] } +tokio = { version = "1.24.2", features = ["full"] } serde = { version = "1.0.147", features = ["derive"] } network = { path = "../network" } nix = "0.25.0" diff --git a/tests/Cargo.toml b/tests/Cargo.toml index 10530ca9..7fea76cc 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -26,7 +26,7 @@ network = { path = "../crates/network" } nix = "0.25.0" prost = "0.11.2" tempfile = "3.3.0" -tokio = { version = "1.21.2", features = ["full"] } +tokio = { version = "1.24.2", features = ["full"] } tonic = "0.8.2" tower = { version = "0.4.13", features = ["util"] } uuid = { version = "1.2.2", features = ["v4"] }