diff --git a/Cargo.lock b/Cargo.lock index a4bd4c7..3960e84 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1315,9 +1315,9 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.6.11" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" +checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233" dependencies = [ "bitflags", "bytes", @@ -1325,6 +1325,7 @@ dependencies = [ "http", "http-body", "http-body-util", + "percent-encoding", "pin-project-lite", "tokio", "tower-layer", diff --git a/crates/ste-web-gateway/Cargo.toml b/crates/ste-web-gateway/Cargo.toml index 9a5e74a..6584bed 100644 --- a/crates/ste-web-gateway/Cargo.toml +++ b/crates/ste-web-gateway/Cargo.toml @@ -18,7 +18,7 @@ ste-query-plane.workspace = true ste-workflows.workspace = true tokio = { workspace = true, features = ["net", "signal"] } tower = { version = "0.5", features = ["limit", "util"] } -tower-http = { version = "0.6", features = ["catch-panic", "limit", "timeout"] } +tower-http = { version = "0.7", features = ["catch-panic", "limit", "timeout"] } [dev-dependencies] http-body-util = "0.1"