diff --git a/Cargo.lock b/Cargo.lock index bb3f87b..372c64f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1411,7 +1411,7 @@ dependencies = [ "tokio", "toml", "tower", - "tower-http", + "tower-http 0.7.1", "tracing", "tracing-subscriber", "uuid", @@ -2044,7 +2044,7 @@ dependencies = [ "tokio-rustls", "tokio-util", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -2923,8 +2923,24 @@ dependencies = [ "tower", "tower-layer", "tower-service", - "tracing", "url", +] + +[[package]] +name = "tower-http" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08a05a66a4fdd61cbbe0a1d755ffe0ca6aba159dd4820936a0ff8a8278245b9c" +dependencies = [ + "bitflags", + "bytes", + "http", + "http-body", + "percent-encoding", + "pin-project-lite", + "tower-layer", + "tower-service", + "tracing", "uuid", ] diff --git a/Cargo.toml b/Cargo.toml index 5935593..3ab5624 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,7 +41,7 @@ thiserror = "2" tokio = { version = "1", features = ["fs", "io-util", "macros", "process", "rt-multi-thread", "signal", "time"] } toml = "0.9" tower = { version = "0.5", features = ["limit", "util"] } -tower-http = { version = "0.6", features = ["request-id", "trace"] } +tower-http = { version = "0.7", features = ["request-id", "trace"] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] } uuid = { version = "1", features = ["v4"] }