diff --git a/Cargo.lock b/Cargo.lock index d1887d6..ea59189 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1834,9 +1834,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 = [ "async-compression", "bitflags", @@ -1844,6 +1844,7 @@ dependencies = [ "futures-core", "http", "http-body", + "percent-encoding", "pin-project-lite", "tokio", "tokio-util", diff --git a/crates/houndr-server/Cargo.toml b/crates/houndr-server/Cargo.toml index 01f79d2..ae5c492 100644 --- a/crates/houndr-server/Cargo.toml +++ b/crates/houndr-server/Cargo.toml @@ -20,7 +20,7 @@ clap = { version = "4", features = ["derive"] } anyhow.workspace = true tracing.workspace = true tracing-subscriber.workspace = true -tower-http = { version = "0.6", features = ["cors", "timeout", "compression-gzip", "trace"] } +tower-http = { version = "0.7", features = ["cors", "timeout", "compression-gzip", "trace"] } glob = "0.3" rayon.workspace = true tokio-stream = "0.1"