From e85eb3903e9a10d7e0b68c5db6a917b9a08dc4b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Jun 2025 18:53:53 +0000 Subject: [PATCH] Bump tokio from 1.45.0 to 1.45.1 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.45.0 to 1.45.1. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.45.0...tokio-1.45.1) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.45.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/common/Cargo.toml | 2 +- crates/ev-cli/Cargo.toml | 2 +- crates/ev-enclave/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 785640d4..19ee2759 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3685,9 +3685,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.45.0" +version = "1.45.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165" +checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779" dependencies = [ "backtrace", "bytes", diff --git a/crates/common/Cargo.toml b/crates/common/Cargo.toml index e413ad23..19440b7f 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.45.1" [dev-dependencies] mockall = "0.11.4" diff --git a/crates/ev-cli/Cargo.toml b/crates/ev-cli/Cargo.toml index 40769274..420da859 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.45.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..b71732e0 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.45.1", features = ["rt","rt-multi-thread","macros","fs"] } tokio-util = { version = "0.7.4", features = ["full"] } bytes = "1" itertools = "0.10.3"