diff --git a/agent-os/Cargo.lock b/agent-os/Cargo.lock index 2f3256a1..09fb4f9a 100644 --- a/agent-os/Cargo.lock +++ b/agent-os/Cargo.lock @@ -1533,7 +1533,7 @@ dependencies = [ "hex", "serde_json", "tokio", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", ] @@ -2051,7 +2051,7 @@ dependencies = [ "tempfile", "thiserror 1.0.69", "tokio", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "uuid", @@ -4907,7 +4907,7 @@ dependencies = [ "tokio-rustls 0.26.4", "tokio-util", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -11060,10 +11060,26 @@ dependencies = [ "tower", "tower-layer", "tower-service", - "tracing", "url", ] +[[package]] +name = "tower-http" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233" +dependencies = [ + "bitflags 2.11.1", + "bytes", + "http 1.4.1", + "http-body 1.0.1", + "percent-encoding", + "pin-project-lite", + "tower-layer", + "tower-service", + "tracing", +] + [[package]] name = "tower-layer" version = "0.3.3" diff --git a/agent-os/Cargo.toml b/agent-os/Cargo.toml index 28a5060f..371c5c3e 100644 --- a/agent-os/Cargo.toml +++ b/agent-os/Cargo.toml @@ -79,7 +79,7 @@ k256 = "0.13" sha3 = "0.10" rand = "0.9" axum = "0.7" -tower-http = { version = "0.6", features = ["cors", "trace"] } +tower-http = { version = "0.7", features = ["cors", "trace"] } solana-sdk = "2" solana-client = "2" sha2 = "0.11"