diff --git a/Cargo.lock b/Cargo.lock index b70c582..5daea47 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -499,7 +499,7 @@ dependencies = [ "thiserror", "tokio", "toml", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "url", @@ -1232,7 +1232,7 @@ dependencies = [ "tokio", "tokio-rustls", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -1746,8 +1746,24 @@ 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", + "bytes", + "http", + "http-body", + "percent-encoding", + "pin-project-lite", + "tower-layer", + "tower-service", + "tracing", "uuid", ] diff --git a/Cargo.toml b/Cargo.toml index d582ee7..fdcec76 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ sha2 = "0.11" thiserror = "2" tokio = { version = "1", features = ["full"] } toml = "1.1" -tower-http = { version = "0.6", features = ["cors", "request-id", "trace"] } +tower-http = { version = "0.7", features = ["cors", "request-id", "trace"] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } url = "2"