From 8aa1d24410eee63f4bccd61432d09f0c3bd1fcc1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 10:31:32 +0000 Subject: [PATCH] Bump tokio from 1.32.0 to 1.33.0 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.32.0 to 1.33.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.33.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- wtx-bench/Cargo.toml | 2 +- wtx-fuzz/Cargo.toml | 2 +- wtx-ui/Cargo.toml | 2 +- wtx/Cargo.toml | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cddb729b..d1d6b736 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1480,9 +1480,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.32.0" +version = "1.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" +checksum = "4f38200e3ef7995e5ef13baec2f432a6da0aa9ac495b2c0e8f3b7eec2c92d653" dependencies = [ "backtrace", "bytes", diff --git a/wtx-bench/Cargo.toml b/wtx-bench/Cargo.toml index 6ba3a672..d7e0c942 100644 --- a/wtx-bench/Cargo.toml +++ b/wtx-bench/Cargo.toml @@ -1,6 +1,6 @@ [dependencies] plotters = { default-features = false, features = ["histogram", "svg_backend"], version = "0.3" } -tokio = { default-features = false, features = ["macros", "rt-multi-thread"], version = "1.0" } +tokio = { default-features = false, features = ["macros", "rt-multi-thread"], version = "1.33" } wtx = { features = ["tokio", "web-socket-handshake"], path = "../wtx" } [package] diff --git a/wtx-fuzz/Cargo.toml b/wtx-fuzz/Cargo.toml index 54887fdc..df200e46 100644 --- a/wtx-fuzz/Cargo.toml +++ b/wtx-fuzz/Cargo.toml @@ -10,7 +10,7 @@ required-features = ["libfuzzer-sys/link_libfuzzer"] [dependencies] libfuzzer-sys = { default-features = false, version = "0.4" } -tokio = { default-features = false, features = ["rt"], version = "1.0" } +tokio = { default-features = false, features = ["rt"], version = "1.33" } wtx = { default-features = false, features = ["arbitrary"], path = "../wtx" } [package] diff --git a/wtx-ui/Cargo.toml b/wtx-ui/Cargo.toml index eb74fb4d..ce0a028e 100644 --- a/wtx-ui/Cargo.toml +++ b/wtx-ui/Cargo.toml @@ -1,6 +1,6 @@ [dependencies] clap = { default-features = false, features = ["derive", "help", "std", "usage"], optional = true, version = "4.4" } -tokio = { default-features = false, features = ["io-std", "macros", "rt"], version = "1.0" } +tokio = { default-features = false, features = ["io-std", "macros", "rt"], version = "1.33" } wtx = { default-features = false, path = "../wtx" } [features] diff --git a/wtx/Cargo.toml b/wtx/Cargo.toml index 51f63656..7d2d04c5 100644 --- a/wtx/Cargo.toml +++ b/wtx/Cargo.toml @@ -56,7 +56,7 @@ rustls-pemfile = { default-features = false, optional = true, version = "1.0" } sha1 = { default-features = false, optional = true, version = "0.10" } simdutf8 = { default-features = false, features = ["aarch64_neon"], optional = true, version = "0.1" } smol = { default-features = false, optional = true, version = "1.0" } -tokio = { default-features = false, features = ["io-util", "net"], optional = true, version = "1.0" } +tokio = { default-features = false, features = ["io-util", "net"], optional = true, version = "1.33" } tokio-rustls = { default-features = false, optional = true, version = "0.24" } tokio-uring = { default-features = false, optional = true, version = "0.4" } tracing = { default-features = false, features = ["attributes"], optional = true, version = "0.1" } @@ -64,7 +64,7 @@ webpki-roots = { default-features = false, optional = true, version = "0.25" } [dev-dependencies] async-trait = { default-features = false, version = "0.1" } -tokio = { default-features = false, features = ["macros", "rt", "time"], version = "1.0" } +tokio = { default-features = false, features = ["macros", "rt", "time"], version = "1.33" } tracing-subscriber = { default-features = false, features = ["env-filter", "fmt"], version = "0.3" } tracing-tree = { default-features = false, version = "0.2" } wtx = { default-features = false, features = ["flate2", "std", "tokio", "web-socket-handshake"], path = "." }