diff --git a/Cargo.lock b/Cargo.lock index e9ff149..67d3142 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -770,7 +770,7 @@ dependencies = [ "thiserror 1.0.69", "tokio", "tower 0.4.13", - "tower-http 0.5.2", + "tower-http", "tracing", "tracing-subscriber", "uuid", @@ -1032,7 +1032,7 @@ dependencies = [ "tokio", "tokio-rustls", "tower 0.5.3", - "tower-http 0.6.11", + "tower-http", "tower-service", "url", "wasm-bindgen", @@ -1426,23 +1426,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.11" @@ -1458,6 +1441,7 @@ dependencies = [ "tower 0.5.3", "tower-layer", "tower-service", + "tracing", "url", ] diff --git a/Cargo.toml b/Cargo.toml index 5171b8b..52f6d2e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ thiserror = "1" reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] } dashmap = "5" chrono = { version = "0.4", features = ["serde"] } -tower-http = { version = "0.5", features = ["trace", "cors"] } +tower-http = { version = "0.6", features = ["trace", "cors"] } tower = "0.4" async-trait = "0.1" hmac = "0.12"