diff --git a/Cargo.lock b/Cargo.lock index c7d4198b..d557a446 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -696,7 +696,7 @@ dependencies = [ "tonic-health", "tonic-web", "tower 0.4.13", - "tower-http 0.4.4", + "tower-http 0.7.0", "tower-layer", "tracing", "tracing-core", @@ -2708,7 +2708,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4" dependencies = [ "bytes", - "heck 0.4.1", + "heck 0.5.0", "itertools", "log", "multimap", @@ -4325,6 +4325,21 @@ dependencies = [ "tower-service", ] +[[package]] +name = "tower-http" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233" +dependencies = [ + "bitflags 2.6.0", + "bytes", + "http 1.1.0", + "percent-encoding", + "pin-project-lite", + "tower-layer", + "tower-service", +] + [[package]] name = "tower-layer" version = "0.3.3" diff --git a/crates/devtools-core/Cargo.toml b/crates/devtools-core/Cargo.toml index b55c853e..7a0cf904 100644 --- a/crates/devtools-core/Cargo.toml +++ b/crates/devtools-core/Cargo.toml @@ -22,7 +22,7 @@ prost-types.workspace = true tonic.workspace = true tonic-web = "0.10" tonic-health = "0.10" -tower-http = "0.4" +tower-http = "0.7" tower-layer = "0.3" futures = "0.3.30" bytes = "1.7.1"