From c7c0d6a0d65b10cabe92c5c8db0dce01edf7ada3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Feb 2026 22:08:44 +0000 Subject: [PATCH] deps(deps): bump tokio-util from 0.7.17 to 0.7.18 Bumps [tokio-util](https://github.com/tokio-rs/tokio) from 0.7.17 to 0.7.18. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-util-0.7.17...tokio-util-0.7.18) --- updated-dependencies: - dependency-name: tokio-util dependency-version: 0.7.18 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/capsule-registry/Cargo.toml | 2 +- crates/pipeline/Cargo.toml | 2 +- crates/protocol-s3/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3847c03..754c297 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7383,9 +7383,9 @@ dependencies = [ [[package]] name = "tokio-util" -version = "0.7.17" +version = "0.7.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594" +checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" dependencies = [ "bytes", "futures-core", diff --git a/crates/capsule-registry/Cargo.toml b/crates/capsule-registry/Cargo.toml index 745752f..d829162 100644 --- a/crates/capsule-registry/Cargo.toml +++ b/crates/capsule-registry/Cargo.toml @@ -47,7 +47,7 @@ pipeline = { path = "../pipeline", optional = true } scaling = { path = "../scaling", optional = true } sim-nvram = { path = "../sim-nvram", version = "0.1.0" } # For simulation mode support async-trait = "0.1" -tokio-util = { version = "^0.7.11", features = ["io"] } +tokio-util = { version = "^0.7.18", features = ["io"] } async-stream = "0.3" # Phase 3: distributed consensus (Raft) diff --git a/crates/pipeline/Cargo.toml b/crates/pipeline/Cargo.toml index 361fe2c..8bbffc2 100644 --- a/crates/pipeline/Cargo.toml +++ b/crates/pipeline/Cargo.toml @@ -24,7 +24,7 @@ tracing = { workspace = true } blake3 = { workspace = true } hex = { workspace = true } tokio = { workspace = true } -tokio-util = { version = "^0.7.11", features = ["io"] } +tokio-util = { version = "^0.7.18", features = ["io"] } bytes = { workspace = true } async-stream = "0.3" uuid = { workspace = true } diff --git a/crates/protocol-s3/Cargo.toml b/crates/protocol-s3/Cargo.toml index 10226cd..e3fbebb 100644 --- a/crates/protocol-s3/Cargo.toml +++ b/crates/protocol-s3/Cargo.toml @@ -25,7 +25,7 @@ axum = { workspace = true, features = ["http2", "multipart"] } # 2025-11-03 sw: tokio = { workspace = true } tower = { version = "^0.4.13", features = ["util"] } # 2025-11-03 sw: aligns with axum 0.7 require tower-http = { workspace = true, features = ["cors", "trace"] } # 2025-11-03 sw: HTTP middleware review logged -tokio-util = { version = "^0.7.11", features = ["io"] } +tokio-util = { version = "^0.7.18", features = ["io"] } # Serialization serde = { workspace = true }