diff --git a/Cargo.lock b/Cargo.lock index 7a0a90b0..9bfd054c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6353,9 +6353,9 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.4.1" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8bd22a874a2d0b70452d5597b12c537331d49060824a95f49f108994f94aa4c" +checksum = "55ae70283aba8d2a8b411c695c437fe25b8b5e44e23e780662002fc72fb47a82" dependencies = [ "bitflags 2.3.3", "bytes 1.4.0", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index b068079a..6aa21d12 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -25,7 +25,7 @@ serde_yaml = "0.9.25" sqlx = { version = "0.7.1", features = ["runtime-tokio-rustls", "postgres"] } tokio = { version = "1.29.1", features = ["full"] } tower = { version = "0.4.13", features = ["full"] } -tower-http = { version = "0.4.1", features = ["fs"] } +tower-http = { version = "0.4.3", features = ["fs"] } url = "2.4.0" watchman_client = "0.8.0" zeroize = "1.6.0" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 5c1e6779..e71678fc 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -22,7 +22,7 @@ sentry = { version = "0.31.5", default-features = false } # Web server hyper = { version = "0.14.27", features = ["full"] } tower = "0.4.13" -tower-http = { version = "0.4.1", features = ["cors"] } +tower-http = { version = "0.4.3", features = ["cors"] } axum = "0.6.19" axum-macros = "0.3.8" axum-extra = { version = "0.7.5", features = ["cookie-private"] } diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 61d65138..f0eca301 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -26,7 +26,7 @@ serde_urlencoded = "0.7.1" thiserror = "1.0.43" tokio = { version = "1.29.1", features = ["sync", "parking_lot"], optional = true } tower = { version = "0.4.13", features = [] } -tower-http = { version = "0.4.1", features = ["cors"] } +tower-http = { version = "0.4.3", features = ["cors"] } tracing = "0.1.37" tracing-opentelemetry = "0.19.0" webpki = { version = "0.22.0", optional = true } diff --git a/crates/listener/Cargo.toml b/crates/listener/Cargo.toml index dd65e639..718d7830 100644 --- a/crates/listener/Cargo.toml +++ b/crates/listener/Cargo.toml @@ -14,7 +14,7 @@ pin-project-lite = "0.2.10" thiserror = "1.0.43" tokio = { version = "1.29.1", features = ["net", "rt", "macros", "signal", "time"] } tokio-rustls = "0.24.1" -tower-http = { version = "0.4.1", features = ["add-extension"] } +tower-http = { version = "0.4.3", features = ["add-extension"] } tower-service = "0.3.2" tracing = "0.1.37" libc = "0.2.147" diff --git a/crates/oidc-client/Cargo.toml b/crates/oidc-client/Cargo.toml index 80bdc59d..c5d41c99 100644 --- a/crates/oidc-client/Cargo.toml +++ b/crates/oidc-client/Cargo.toml @@ -59,7 +59,7 @@ version = "0.14.27" features = ["client", "http1", "http2", "stream", "runtime" ] optional = true [dependencies.tower-http] -version = "0.4.1" +version = "0.4.3" features = ["follow-redirect", "set-header", "timeout", "map-request-body", "util"] optional = true