From 37929963fc30af754f664b853e6f856bd1a03802 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 May 2026 03:35:37 +0000 Subject: [PATCH] chore(deps): bump tower-http from 0.5.2 to 0.6.8 Bumps [tower-http](https://github.com/tower-rs/tower-http) from 0.5.2 to 0.6.8. - [Release notes](https://github.com/tower-rs/tower-http/releases) - [Commits](https://github.com/tower-rs/tower-http/compare/tower-http-0.5.2...tower-http-0.6.8) --- updated-dependencies: - dependency-name: tower-http dependency-version: 0.6.8 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 24 ++++-------------------- crates/skilllite-commands/Cargo.toml | 2 +- skilllite/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 22 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e5d0ba8..4297855 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1991,7 +1991,7 @@ dependencies = [ "tokio-rustls", "tokio-util", "tower", - "tower-http 0.6.8", + "tower-http", "tower-service", "url", "wasm-bindgen", @@ -2312,7 +2312,7 @@ dependencies = [ "thiserror 2.0.18", "tokio", "tower", - "tower-http 0.5.2", + "tower-http", "tracing", "ureq", "uuid", @@ -2408,7 +2408,7 @@ dependencies = [ "tempfile", "thiserror 2.0.18", "tokio", - "tower-http 0.5.2", + "tower-http", "tracing", "ureq", "uuid", @@ -2824,23 +2824,6 @@ dependencies = [ "tracing", ] -[[package]] -name = "tower-http" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" -dependencies = [ - "bitflags", - "bytes", - "http", - "http-body", - "http-body-util", - "pin-project-lite", - "tower-layer", - "tower-service", - "tracing", -] - [[package]] name = "tower-http" version = "0.6.8" @@ -2857,6 +2840,7 @@ dependencies = [ "tower", "tower-layer", "tower-service", + "tracing", ] [[package]] diff --git a/crates/skilllite-commands/Cargo.toml b/crates/skilllite-commands/Cargo.toml index 97fd242..d18282a 100644 --- a/crates/skilllite-commands/Cargo.toml +++ b/crates/skilllite-commands/Cargo.toml @@ -44,7 +44,7 @@ zip = "0.6" ureq = { version = "2", optional = true, features = ["json"] } tokio = { version = "1", optional = true, features = ["rt-multi-thread", "macros", "time", "io-util", "net"] } axum = { version = "0.7", optional = true, features = ["json"] } -tower-http = { version = "0.5", optional = true, features = ["trace"] } +tower-http = { version = "0.6", optional = true, features = ["trace"] } uuid = { version = "1", optional = true, features = ["v4"] } rustyline = { version = "14", optional = true } thiserror.workspace = true diff --git a/skilllite/Cargo.toml b/skilllite/Cargo.toml index 8e7da73..9746a5a 100644 --- a/skilllite/Cargo.toml +++ b/skilllite/Cargo.toml @@ -54,7 +54,7 @@ dirs = "5.0" chrono = { version = "0.4", features = ["serde"] } tempfile = "3.10" axum = { version = "0.7", optional = true, features = ["json"] } -tower-http = { version = "0.5", optional = true, features = ["trace"] } +tower-http = { version = "0.6", optional = true, features = ["trace"] } # Agent feature deps re-exported for commands that use them directly tokio = { version = "1", optional = true, features = ["rt-multi-thread", "macros", "time", "io-util", "process", "net"] }