From ce88fbb1a7357203b150823fe0d9d6b9943611b3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Nov 2023 02:24:15 +0000 Subject: [PATCH] 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 | 54 ++++++++++++++++++++++++++++++++------- crates/repomng/Cargo.toml | 2 +- 2 files changed, 46 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7f9eb6d..2f35f2f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -87,9 +87,9 @@ dependencies = [ "bitflags 1.3.2", "bytes", "futures-util", - "http", - "http-body", - "hyper", + "http 0.2.9", + "http-body 0.4.5", + "hyper 0.14.27", "itoa", "matchit", "memchr", @@ -116,8 +116,8 @@ dependencies = [ "async-trait", "bytes", "futures-util", - "http", - "http-body", + "http 0.2.9", + "http-body 0.4.5", "mime", "rustversion", "tower-layer", @@ -320,6 +320,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" @@ -327,10 +338,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" dependencies = [ "bytes", - "http", + "http 0.2.9", "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" @@ -353,8 +374,8 @@ dependencies = [ "futures-channel", "futures-core", "futures-util", - "http", - "http-body", + "http 0.2.9", + "http-body 0.4.5", "httparse", "httpdate", "itoa", @@ -366,6 +387,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 = "idna" version = "0.4.0" @@ -622,7 +658,7 @@ dependencies = [ "clap", "eyre", "git2", - "hyper", + "hyper 1.0.0", "serde", "tokio", "tracing", diff --git a/crates/repomng/Cargo.toml b/crates/repomng/Cargo.toml index 6692100..5f3f266 100644 --- a/crates/repomng/Cargo.toml +++ b/crates/repomng/Cargo.toml @@ -10,7 +10,7 @@ axum = { version = "0.6.20", default-features = false, features = ["http1", "jso clap = { version = "4.4.8", features = ["derive", "env"] } eyre = "0.6.8" git2 = "0.18.1" -hyper = "0.14.27" +hyper = "1.0.0" serde = { version = "1.0.192", features = ["derive"] } tokio = { version = "1.34.0", default-features = false, features = ["macros", "rt-multi-thread"] } tracing = "0.1.40"