diff --git a/Cargo.lock b/Cargo.lock index 4679408..74dd7be 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1147,7 +1147,7 @@ dependencies = [ "tokio", "tokio-stream", "tower", - "tower-http", + "tower-http 0.7.0", "tower-sessions", "tower-sessions-sqlx-store", "tower_governor", @@ -1787,16 +1787,6 @@ version = "2.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" -[[package]] -name = "iri-string" -version = "0.7.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20" -dependencies = [ - "memchr", - "serde", -] - [[package]] name = "itertools" version = "0.14.0" @@ -1932,7 +1922,7 @@ dependencies = [ "tachys", "tokio", "tower", - "tower-http", + "tower-http 0.6.11", ] [[package]] @@ -3043,7 +3033,7 @@ dependencies = [ "tokio", "tokio-native-tls", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -4287,9 +4277,9 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.6.8" +version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" +checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" dependencies = [ "bitflags", "bytes", @@ -4300,7 +4290,6 @@ dependencies = [ "http-body-util", "http-range-header", "httpdate", - "iri-string", "mime", "mime_guess", "percent-encoding", @@ -4310,7 +4299,32 @@ 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", + "futures-core", + "futures-util", + "http", + "http-body", + "http-body-util", + "http-range-header", + "httpdate", + "mime", + "mime_guess", + "percent-encoding", + "pin-project-lite", + "tokio", + "tokio-util", + "tower-layer", + "tower-service", ] [[package]] diff --git a/crates/gitnodes-app/Cargo.toml b/crates/gitnodes-app/Cargo.toml index e7ef5ae..933a1e6 100644 --- a/crates/gitnodes-app/Cargo.toml +++ b/crates/gitnodes-app/Cargo.toml @@ -23,7 +23,7 @@ wasm-bindgen = { version = "0.2", optional = true } serde = { version = "1", features = ["derive"] } serde_yaml = "0.9" tower = { version = "0.5", optional = true } -tower-http = { version = "0.6", features = ["fs", "cors"], optional = true } +tower-http = { version = "0.7", features = ["fs", "cors"], optional = true } http = { version = "1", optional = true } base64 = { version = "0.22", optional = true } dotenvy = { version = "0.15", optional = true }