From fd397b9ea045840ddb36794f31dba600b68ef7b6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 31 May 2024 08:30:41 +0530 Subject: [PATCH] build(deps): bump tokio from 1.37.0 to 1.38.0 (#324) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.37.0 to 1.38.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.37.0...tokio-1.38.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 | 8 ++++---- Cargo.toml | 2 +- wireguard-broker/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c6a9361..6dc01d4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2178,9 +2178,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.37.0" +version = "1.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787" +checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a" dependencies = [ "backtrace", "bytes", @@ -2197,9 +2197,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" +checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index f55aec9..eed5943 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,7 +60,7 @@ chacha20poly1305 = { version = "0.10.1", default-features = false, features = [ zerocopy = { version = "0.7.34", features = ["derive"] } home = "0.5.9" derive_builder = "0.20.0" -tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.38", features = ["macros", "rt-multi-thread"] } postcard= {version = "1.0.8", features = ["alloc"]} #Dev dependencies diff --git a/wireguard-broker/Cargo.toml b/wireguard-broker/Cargo.toml index 28322e6..62c94cb 100644 --- a/wireguard-broker/Cargo.toml +++ b/wireguard-broker/Cargo.toml @@ -19,7 +19,7 @@ wireguard-uapi = { workspace = true } # Socket handler only rosenpass-to = { workspace = true } -tokio = { version = "1.34.0", features = ["sync", "full", "mio"] } +tokio = { version = "1.38.0", features = ["sync", "full", "mio"] } anyhow = { workspace = true } clap = { workspace = true } env_logger = { workspace = true }