From 158e78ef040edff850fcfd20f122019634398388 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 06:47:44 -0400 Subject: [PATCH] build(deps): bump tokio from 1.39.3 to 1.40.0 (#545) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.39.3 to 1.40.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.39.3...tokio-1.40.0) --- 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 | 4 ++-- crates/ironrdp-tls/Cargo.toml | 2 +- crates/ironrdp/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 053496d2..354f72c5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4717,9 +4717,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.39.3" +version = "1.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9babc99b9923bfa4804bd74722ff02c0381021eafa4db9949217e3be8e84fff5" +checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998" dependencies = [ "backtrace", "bytes", diff --git a/crates/ironrdp-tls/Cargo.toml b/crates/ironrdp-tls/Cargo.toml index 3760e07c..b94252f3 100644 --- a/crates/ironrdp-tls/Cargo.toml +++ b/crates/ironrdp-tls/Cargo.toml @@ -22,7 +22,7 @@ native-tls = ["dep:tokio-native-tls", "dep:x509-cert", "tokio/io-util"] stub = [] [dependencies] -tokio = { version = "1.39" } +tokio = { version = "1.40" } x509-cert = { version = "0.2", default-features = false, features = ["std"], optional = true } tokio-native-tls = { version = "0.3", optional = true } tokio-rustls = { version = "0.26", optional = true } diff --git a/crates/ironrdp/Cargo.toml b/crates/ironrdp/Cargo.toml index d00ad979..a05b42e8 100644 --- a/crates/ironrdp/Cargo.toml +++ b/crates/ironrdp/Cargo.toml @@ -61,7 +61,7 @@ pico-args = "0.5" x509-cert = { version = "0.2", default-features = false, features = ["std"] } tracing.workspace = true tracing-subscriber = { version = "0.3", features = ["env-filter"] } -tokio = { version = "1.39", features = ["full"] } +tokio = { version = "1.40", features = ["full"] } tokio-rustls = "0.26" rand = "0.8"