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"] }