diff --git a/Cargo.lock b/Cargo.lock index 5807953..fae1092 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2497,7 +2497,7 @@ dependencies = [ "snafu", "tokio", "tower 0.4.13", - "tower-http", + "tower-http 0.5.2", "tracing", "url", ] @@ -4217,7 +4217,7 @@ dependencies = [ "tokio-metrics", "tokio-util", "tower 0.5.1", - "tower-http", + "tower-http 0.6.0", "tracing", "tracing-subscriber", ] @@ -4806,6 +4806,23 @@ dependencies = [ "tracing", ] +[[package]] +name = "tower-http" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41515cc9e193536d93fd0dbbea0c73819c08eca76e0b30909a325c3ec90985bb" +dependencies = [ + "bitflags 2.6.0", + "bytes", + "http 1.1.0", + "http-body 1.0.0", + "http-body-util", + "pin-project-lite", + "tower-layer", + "tower-service", + "tracing", +] + [[package]] name = "tower-layer" version = "0.3.3" diff --git a/crates/synd_api/Cargo.toml b/crates/synd_api/Cargo.toml index 2c65dad..fe8d4be 100644 --- a/crates/synd_api/Cargo.toml +++ b/crates/synd_api/Cargo.toml @@ -45,7 +45,7 @@ tokio = { workspace = true, features = ["macros", "rt-multi-thread" tokio-metrics = { version = "0.3.1", default-features = false, features = ["rt"] } tokio-util = { workspace = true } tower = { version = "0.5.1", default-features = false, features = ["limit", "timeout"] } -tower-http = { version = "0.5.2", default-features = false, features = ["trace", "sensitive-headers", "cors", "limit"] } +tower-http = { version = "0.6.0", default-features = false, features = ["trace", "sensitive-headers", "cors", "limit"] } tracing = { workspace = true } [features]