From a99e506138c734f69dc0c34736b2af00dfcdab08 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Jul 2025 21:17:33 +0000 Subject: [PATCH] Bump tokio from 1.45.0 to 1.46.1 --- updated-dependencies: - dependency-name: tokio dependency-version: 1.46.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 17 +++++++++++++++-- crates/common/Cargo.toml | 2 +- crates/ev-cli/Cargo.toml | 2 +- crates/ev-enclave/Cargo.toml | 2 +- 4 files changed, 18 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 785640d4..b3c56803 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1939,6 +1939,17 @@ dependencies = [ "generic-array", ] +[[package]] +name = "io-uring" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b86e202f00093dcba4275d4636b93ef9dd75d025ae560d2521b45ea28ab49013" +dependencies = [ + "bitflags 2.8.0", + "cfg-if", + "libc", +] + [[package]] name = "ipnet" version = "2.11.0" @@ -3685,15 +3696,17 @@ dependencies = [ [[package]] name = "tokio" -version = "1.45.0" +version = "1.46.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165" +checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17" dependencies = [ "backtrace", "bytes", + "io-uring", "libc", "mio 1.0.3", "pin-project-lite", + "slab", "socket2", "tokio-macros", "windows-sys 0.52.0", diff --git a/crates/common/Cargo.toml b/crates/common/Cargo.toml index e413ad23..dde37eac 100644 --- a/crates/common/Cargo.toml +++ b/crates/common/Cargo.toml @@ -17,7 +17,7 @@ elliptic-curve = { version = "0.13.8", features = ["pkcs8"] } pcr-sign = { path = "../pcr-sign", optional=true } tempfile = "3.10.1" tokio-util = "0.7.11" -tokio = "1.45.0" +tokio = "1.46.1" [dev-dependencies] mockall = "0.11.4" diff --git a/crates/ev-cli/Cargo.toml b/crates/ev-cli/Cargo.toml index 40769274..f26d1294 100644 --- a/crates/ev-cli/Cargo.toml +++ b/crates/ev-cli/Cargo.toml @@ -34,7 +34,7 @@ strum = { version = "0.26.2", features = [ "derive", "strum_macros" ]} strum_macros = "0.26.2" tempfile = "3.10.1" thiserror = "1.0.59" -tokio = {version = "1.45.0", features = ["rt", "rt-multi-thread", "macros", "fs"]} +tokio = {version = "1.46.1", features = ["rt", "rt-multi-thread", "macros", "fs"]} tokio-util = "0.7.11" toml = "0.5.9" zip = "2.3.0" diff --git a/crates/ev-enclave/Cargo.toml b/crates/ev-enclave/Cargo.toml index cff22898..233d3e09 100644 --- a/crates/ev-enclave/Cargo.toml +++ b/crates/ev-enclave/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tokio = { version = "1.45.0", features = ["rt","rt-multi-thread","macros","fs"] } +tokio = { version = "1.46.1", features = ["rt","rt-multi-thread","macros","fs"] } tokio-util = { version = "0.7.4", features = ["full"] } bytes = "1" itertools = "0.10.3"