diff --git a/Cargo.lock b/Cargo.lock index 860b3007..66509952 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3576,12 +3576,6 @@ dependencies = [ "pin-project-lite", ] -[[package]] -name = "http-range-header" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f" - [[package]] name = "httparse" version = "1.10.1" @@ -7525,17 +7519,14 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.4.4" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140" +checksum = "403fa3b783d4b626a8ad51d766ab03cb6d2dbfc46b1c5d4448395e6628dc9697" dependencies = [ "bitflags 2.9.0", "bytes", - "futures-core", - "futures-util", - "http 0.2.12", - "http-body 0.4.6", - "http-range-header", + "http 1.3.1", + "http-body 1.0.1", "pin-project-lite", "tower-layer", "tower-service", diff --git a/crates/arkflow-plugin/Cargo.toml b/crates/arkflow-plugin/Cargo.toml index 31a73205..ce46b43d 100644 --- a/crates/arkflow-plugin/Cargo.toml +++ b/crates/arkflow-plugin/Cargo.toml @@ -39,7 +39,7 @@ lazy_static = { workspace = true } axum = { workspace = true } reqwest = { workspace = true } tower = "0.5" -tower-http = { version = "0.4", features = ["cors", "trace"] } +tower-http = { version = "0.6", features = ["cors", "trace"] } base64 = "0.22" colored = { workspace = true } flume = { workspace = true }