From 73cef6ce813c620725ac37ed7b42c45d2078b95a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Jan 2023 11:08:51 +0000 Subject: [PATCH] Bump tokio from 1.21.2 to 1.24.1 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.21.2 to 1.24.1. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.21.2...tokio-1.24.1) --- 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..44e301cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1748,9 +1748,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.21.2" +version = "1.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9e03c497dc955702ba729190dc4aac6f2a0ce97f913e5b1b5912fc5039d9099" +checksum = "1d9f76183f91ecfb55e1d7d5602bd1d979e38a3a522fe900241cf195624d67ae" 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..35876f0c 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.1", features = ["full"] } tonic = "0.8.2" [dev-dependencies] diff --git a/crates/container/Cargo.toml b/crates/container/Cargo.toml index 95f3bb7d..11d04b16 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.1", features = ["full"] } [dev-dependencies] which = "4.3.0" diff --git a/crates/network/Cargo.toml b/crates/network/Cargo.toml index 2f741a3d..78712a59 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.1", features = ["full"] } which = "4.3.0" [dev-dependencies] diff --git a/crates/sandbox/Cargo.toml b/crates/sandbox/Cargo.toml index 0b594c73..77ca377d 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.1", 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.1", features = ["macros"] } tempfile = "3.3.0" nix = "0.25.0" diff --git a/crates/server/Cargo.toml b/crates/server/Cargo.toml index 9b35f0bb..9b0c502f 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.1", features = ["full"] } diff --git a/crates/services/Cargo.toml b/crates/services/Cargo.toml index 5150e25c..d5c39651 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.1", 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..3ef822d5 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.1", features = ["full"] } tonic = "0.8.2" tower = { version = "0.4.13", features = ["util"] } uuid = { version = "1.2.2", features = ["v4"] }