From 95d6d8e2229219056df4db31357d179679a6170f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 10:34:21 +0000 Subject: [PATCH] Bump tokio from 1.35.1 to 1.36.0 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.35.1 to 1.36.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.35.1...tokio-1.36.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 c65254d1..37888391 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3501,9 +3501,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.35.1" +version = "1.36.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104" +checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" dependencies = [ "backtrace", "bytes", diff --git a/wtx-bench/Cargo.toml b/wtx-bench/Cargo.toml index fab1f047..f2e9cf78 100644 --- a/wtx-bench/Cargo.toml +++ b/wtx-bench/Cargo.toml @@ -4,7 +4,7 @@ diesel-async = { default-features = false, features = ["postgres"], version = "0 futures = { default-features = false, version = "0.3" } plotters = { default-features = false, features = ["histogram", "svg_backend"], version = "0.3" } sqlx = { default-features = false, features = ["postgres", "runtime-tokio"], version = "0.7" } -tokio = { default-features = false, features = ["macros", "rt-multi-thread"], version = "1.35" } +tokio = { default-features = false, features = ["macros", "rt-multi-thread"], version = "1.36" } tokio-postgres = { default-features = false, features = ["runtime"], version = "0.7" } wtx = { default-features = false, features = ["atoi", "postgres", "simdutf8", "tokio", "web-socket-handshake"], path = "../wtx" } diff --git a/wtx-fuzz/Cargo.toml b/wtx-fuzz/Cargo.toml index 7faff7bd..aabb03f8 100644 --- a/wtx-fuzz/Cargo.toml +++ b/wtx-fuzz/Cargo.toml @@ -5,7 +5,7 @@ required-features = ["libfuzzer-sys/link_libfuzzer"] [dependencies] libfuzzer-sys = { default-features = false, version = "0.4" } -tokio = { default-features = false, features = ["rt"], version = "1.35" } +tokio = { default-features = false, features = ["rt"], version = "1.36" } wtx = { default-features = false, features = ["arbitrary", "web-socket"], path = "../wtx" } [package] diff --git a/wtx-ui/Cargo.toml b/wtx-ui/Cargo.toml index 9034057f..29dfe93a 100644 --- a/wtx-ui/Cargo.toml +++ b/wtx-ui/Cargo.toml @@ -1,7 +1,7 @@ [dependencies] clap = { default-features = false, features = ["derive", "help", "std", "usage"], optional = true, version = "4.4" } dotenv = { default-features = false, optional = true, version = "0.15" } -tokio = { default-features = false, features = ["io-std", "io-util", "macros", "net", "rt-multi-thread"], version = "1.35" } +tokio = { default-features = false, features = ["io-std", "io-util", "macros", "net", "rt-multi-thread"], version = "1.36" } wtx = { default-features = false, features = ["tokio"], path = "../wtx" } [features] diff --git a/wtx/Cargo.toml b/wtx/Cargo.toml index 06fdac93..18a93da3 100644 --- a/wtx/Cargo.toml +++ b/wtx/Cargo.toml @@ -94,7 +94,7 @@ simdutf8 = { default-features = false, features = ["aarch64_neon"], optional = t smallvec = { default-features = false, features = ["const_generics", "union"], optional = true, version = "1.13" } smol = { default-features = false, optional = true, version = "2.0" } test-strategy = { default-features = false, optional = true, version = "0.3" } -tokio = { default-features = false, features = ["io-util", "net", "sync", "time"], optional = true, version = "1.35" } +tokio = { default-features = false, features = ["io-util", "net", "sync", "time"], optional = true, version = "1.36" } tokio-rustls = { default-features = false, features = ["ring"], optional = true, version = "0.25" } tracing = { default-features = false, features = ["attributes"], optional = true, version = "0.1" } tracing-subscriber = { default-features = false, features = ["env-filter", "fmt"], optional = true, version = "0.3" } @@ -103,7 +103,7 @@ webpki-roots = { default-features = false, optional = true, version = "0.26" } [dev-dependencies] chrono = { default-features = false, features = ["clock"], version = "0.4" } -tokio = { default-features = false, features = ["macros", "net", "rt-multi-thread", "time"], version = "1.35" } +tokio = { default-features = false, features = ["macros", "net", "rt-multi-thread", "time"], version = "1.36" } [features] ahash = ["dep:ahash", "hashbrown?/ahash"]