From 722491bec422065361669522473343b2bc490224 Mon Sep 17 00:00:00 2001 From: Johan Klokkhammer Helsing Date: Thu, 12 Dec 2024 09:56:34 +0100 Subject: [PATCH] chore: Upgrade tower-http --- Cargo.lock | 5 ++--- matchbox_server/Cargo.toml | 2 +- matchbox_signaling/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4a011008..a479eeb5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5054,15 +5054,14 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.5.2" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" +checksum = "403fa3b783d4b626a8ad51d766ab03cb6d2dbfc46b1c5d4448395e6628dc9697" dependencies = [ "bitflags 2.6.0", "bytes", "http", "http-body", - "http-body-util", "pin-project-lite", "tower-layer", "tower-service", diff --git a/matchbox_server/Cargo.toml b/matchbox_server/Cargo.toml index 44112540..3c1e116d 100644 --- a/matchbox_server/Cargo.toml +++ b/matchbox_server/Cargo.toml @@ -25,7 +25,7 @@ async-trait = "0.1" axum = { version = "0.7", features = ["ws"] } tracing = { version = "0.1", features = ["log"] } tracing-subscriber = { version = "0.3", features = ["env-filter"] } -tower-http = { version = "0.5", features = ["cors", "trace"] } +tower-http = { version = "0.6", features = ["cors", "trace"] } tokio = { version = "1.32", features = ["macros", "rt-multi-thread"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/matchbox_signaling/Cargo.toml b/matchbox_signaling/Cargo.toml index fe5d0773..63058111 100644 --- a/matchbox_signaling/Cargo.toml +++ b/matchbox_signaling/Cargo.toml @@ -24,7 +24,7 @@ matchbox_protocol = { version = "0.10", path = "../matchbox_protocol", features axum = { version = "0.7", features = ["ws"] } hyper = { version = "1.2", features = ["server"] } tracing = { version = "0.1", features = ["log"] } -tower-http = { version = "0.5", features = ["cors", "trace"] } +tower-http = { version = "0.6", features = ["cors", "trace"] } tokio = { version = "1.32", features = ["macros", "rt-multi-thread"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0"