From 72f0b26f1ea83d77c5c972686a702e214e540802 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 18:57:47 +0000 Subject: [PATCH] Bump tokio from 1.38.0 to 1.39.2 (#925) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.38.0 to 1.39.2. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.38.0...tokio-1.39.2) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 18 +++++++++--------- Cargo.toml | 2 +- integration/ducks/Cargo.toml | 2 +- integration/sheepdog/Cargo.toml | 2 +- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 045bc735a..5b520f18d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1634,13 +1634,14 @@ dependencies = [ [[package]] name = "mio" -version = "0.8.11" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" +checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" dependencies = [ + "hermit-abi", "libc", "wasi", - "windows-sys 0.48.0", + "windows-sys 0.52.0", ] [[package]] @@ -2871,20 +2872,19 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.38.0" +version = "1.39.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a" +checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1" dependencies = [ "backtrace", "bytes", "libc", "mio", - "num_cpus", "pin-project-lite", "signal-hook-registry", "socket2 0.5.7", "tokio-macros", - "windows-sys 0.48.0", + "windows-sys 0.52.0", ] [[package]] @@ -2899,9 +2899,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.3.0" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a" +checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index c8da705c2..e2504a417 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ rustc-hash = { version = "1.1" } serde = { version = "1.0", features = ["std", "derive"] } serde_json = { version = "1.0", features = ["std"] } thiserror = { version = "1.0" } -tokio = { version = "1.38" } +tokio = { version = "1.39" } tracing = { version = "0.1" } uuid = { version = "1.6", default-features = false, features = ["v4", "serde"] } diff --git a/integration/ducks/Cargo.toml b/integration/ducks/Cargo.toml index 1e127a1ae..56887b59d 100644 --- a/integration/ducks/Cargo.toml +++ b/integration/ducks/Cargo.toml @@ -16,7 +16,7 @@ once_cell = "1.18" serde_json = "1.0" shared = { path = "../shared" } sketches-ddsketch = "0.2" -tokio = { version = "1.32", features = ["rt", "macros", "fs", "io-util", "process", "signal", "time", "net"] } +tokio = { version = "1.39", features = ["rt", "macros", "fs", "io-util", "process", "signal", "time", "net"] } tokio-stream = { version = "0.1", features = ["net"] } tonic = { version = "0.9", default-features = false, features = ["transport", "prost"] } tower = { version = "0.4", default-features = false, features = ["timeout", "limit", "load-shed"] } diff --git a/integration/sheepdog/Cargo.toml b/integration/sheepdog/Cargo.toml index 44eae254d..c696c91c5 100644 --- a/integration/sheepdog/Cargo.toml +++ b/integration/sheepdog/Cargo.toml @@ -13,7 +13,7 @@ escargot = "0.5.8" serde_json = "1.0" shared = { path = "../shared" } tempfile = "3.12" -tokio = { version = "1.32", features = ["rt", "macros", "fs", "io-util", "process", "signal", "time", "net"] } +tokio = { version = "1.39", features = ["rt", "macros", "fs", "io-util", "process", "signal", "time", "net"] } tonic = { version = "0.9", default-features = false, features = ["transport", "prost"]} tower = { version = "0.4", default-features = false, features = ["timeout", "limit", "load-shed"] } tracing = { version = "0.1", features = ["std", "attributes"] }