From 4fad3e3b24d5263e7c9b817de48f166c1b1edcf7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Nov 2023 16:27:54 +0000 Subject: [PATCH] build(deps): bump hyper from 0.14.27 to 1.0.0 Bumps [hyper](https://github.com/hyperium/hyper) from 0.14.27 to 1.0.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.27...v1.0.0) --- updated-dependencies: - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 56 ++++++++++++++++++++++++++++++++++++++++++++---------- Cargo.toml | 2 +- 2 files changed, 47 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 794e68a..65edd07 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -616,7 +616,7 @@ dependencies = [ "futures-core", "futures-sink", "futures-util", - "http", + "http 0.2.8", "indexmap 1.9.2", "slab", "tokio", @@ -652,7 +652,7 @@ dependencies = [ "clap", "crossterm 0.27.0", "futures", - "hyper", + "hyper 1.0.0", "hyper-rustls", "lazy_static", "log", @@ -695,6 +695,17 @@ dependencies = [ "itoa", ] +[[package]] +name = "http" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b32afd38673a8016f7c9ae69e5af41a58f81b1d31689040f2f1959594ce194ea" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + [[package]] name = "http-body" version = "0.4.5" @@ -702,10 +713,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" dependencies = [ "bytes", - "http", + "http 0.2.8", "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.0.0", +] + [[package]] name = "httparse" version = "1.8.0" @@ -729,8 +750,8 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", - "http-body", + "http 0.2.8", + "http-body 0.4.5", "httparse", "httpdate", "itoa", @@ -742,6 +763,21 @@ dependencies = [ "want", ] +[[package]] +name = "hyper" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24590385be94998c5def4cf53d34edc5381144c805126f00efb954d986f9a7b2" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "http 1.0.0", + "http-body 1.0.0", + "pin-project-lite", + "tokio", +] + [[package]] name = "hyper-rustls" version = "0.24.2" @@ -749,8 +785,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" dependencies = [ "futures-util", - "http", - "hyper", + "http 0.2.8", + "hyper 0.14.27", "log", "rustls", "rustls-native-certs", @@ -1486,8 +1522,8 @@ dependencies = [ "futures-locks", "futures-util", "hex", - "http", - "hyper", + "http 0.2.8", + "hyper 0.14.27", "hyper-rustls", "lazy_static", "mime", @@ -1833,7 +1869,7 @@ dependencies = [ "byteorder", "bytes", "data-encoding", - "http", + "http 0.2.8", "httparse", "log", "rand", diff --git a/Cargo.toml b/Cargo.toml index b9ba89d..c13962b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ tokio = { version = "1", features = ["full"] } slack-morphism = { version = "1.15.1", features = ["hyper"] } chrono = "0.4.31" hyper-rustls = "0.24.2" -hyper = "0.14.27" +hyper = "1.0.0" async-trait = "0.1.74" tracing = "0.1.40" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }