From 4ecb2dd5ab1449723dfb5b1b1a7184c2427e3f2d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 9 Mar 2024 09:13:41 +0000 Subject: [PATCH] chore(deps): bump hyper from 0.14.28 to 1.2.0 Bumps [hyper](https://github.com/hyperium/hyper) from 0.14.28 to 1.2.0. - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.28...v1.2.0) --- updated-dependencies: - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 62 +++++++++++++++++++++++++++-------- matchbox_signaling/Cargo.toml | 2 +- 2 files changed, 50 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d4b2f2b4..58b2086a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -574,9 +574,9 @@ dependencies = [ "bitflags 1.3.2", "bytes", "futures-util", - "http", - "http-body", - "hyper", + "http 0.2.11", + "http-body 0.4.6", + "hyper 0.14.28", "itoa", "matchit", "memchr", @@ -606,8 +606,8 @@ dependencies = [ "async-trait", "bytes", "futures-util", - "http", - "http-body", + "http 0.2.11", + "http-body 0.4.6", "mime", "rustversion", "tower-layer", @@ -992,7 +992,7 @@ dependencies = [ [[package]] name = "bevy_matchbox" -version = "0.9.0" +version = "0.8.0" dependencies = [ "async-compat", "bevy", @@ -2765,6 +2765,17 @@ dependencies = [ "itoa", ] +[[package]] +name = "http" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + [[package]] name = "http-body" version = "0.4.6" @@ -2772,10 +2783,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" dependencies = [ "bytes", - "http", + "http 0.2.11", "pin-project-lite", ] +[[package]] +name = "http-body" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" +dependencies = [ + "bytes", + "http 1.1.0", +] + [[package]] name = "http-range-header" version = "0.3.1" @@ -2804,8 +2825,8 @@ dependencies = [ "futures-channel", "futures-core", "futures-util", - "http", - "http-body", + "http 0.2.11", + "http-body 0.4.6", "httparse", "httpdate", "itoa", @@ -2817,6 +2838,21 @@ dependencies = [ "want", ] +[[package]] +name = "hyper" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "186548d73ac615b32a73aafe38fb4f56c0d340e110e5a200bcadbaf2e199263a" +dependencies = [ + "bytes", + "http 1.1.0", + "http-body 1.0.0", + "httpdate", + "pin-project-lite", + "smallvec", + "tokio", +] + [[package]] name = "icrate" version = "0.0.4" @@ -3114,7 +3150,7 @@ dependencies = [ "async-trait", "axum", "futures", - "hyper", + "hyper 1.2.0", "matchbox_protocol", "serde", "serde_json", @@ -4835,8 +4871,8 @@ dependencies = [ "bytes", "futures-core", "futures-util", - "http", - "http-body", + "http 0.2.11", + "http-body 0.4.6", "http-range-header", "pin-project-lite", "tower-layer", @@ -4961,7 +4997,7 @@ dependencies = [ "byteorder", "bytes", "data-encoding", - "http", + "http 0.2.11", "httparse", "log", "rand", diff --git a/matchbox_signaling/Cargo.toml b/matchbox_signaling/Cargo.toml index 6877d9ad..72626467 100644 --- a/matchbox_signaling/Cargo.toml +++ b/matchbox_signaling/Cargo.toml @@ -22,7 +22,7 @@ matchbox_protocol = { version = "0.8", path = "../matchbox_protocol", features = "json", ] } axum = { version = "0.6", features = ["ws"] } -hyper = { version = "0.14", features = ["server"] } +hyper = { version = "1.2", features = ["server"] } tracing = { version = "0.1", features = ["log"] } tower-http = { version = "0.4", features = ["cors", "trace"] } tokio = { version = "1.32", features = ["macros", "rt-multi-thread"] }