From dec001ccbb45d737131f669390e404ebd79cba14 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 11:08:49 +0000 Subject: [PATCH] Bump hyper from 0.14.27 to 1.0.1 Bumps [hyper](https://github.com/hyperium/hyper) from 0.14.27 to 1.0.1. - [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.1) --- updated-dependencies: - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 70 +++++++++++++++++++++++++++++++++++------------ api/s3/Cargo.toml | 2 +- 2 files changed, 54 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6557e3c..509e57c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -230,7 +230,7 @@ name = "baza-api-s3" version = "0.0.0" dependencies = [ "baza-lib", - "hyper", + "hyper 1.0.1", "s3-server", "secrecy", "tokio-util", @@ -1024,7 +1024,7 @@ dependencies = [ "futures-core", "futures-sink", "futures-util", - "http", + "http 0.2.9", "indexmap", "slab", "tokio", @@ -1116,6 +1116,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" @@ -1123,10 +1134,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" @@ -1156,8 +1177,8 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", - "http-body", + "http 0.2.9", + "http-body 0.4.5", "httparse", "httpdate", "itoa", @@ -1169,6 +1190,21 @@ dependencies = [ "want", ] +[[package]] +name = "hyper" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "403f9214f3e703236b221f1a9cd88ec8b4adfa5296de01ab96216361f4692f56" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "http 1.0.0", + "http-body 1.0.0", + "pin-project-lite", + "tokio", +] + [[package]] name = "hyper-tls" version = "0.5.0" @@ -1176,7 +1212,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" dependencies = [ "bytes", - "hyper", + "hyper 0.14.27", "native-tls", "tokio", "tokio-native-tls", @@ -1799,8 +1835,8 @@ dependencies = [ "bytes", "crc32fast", "futures", - "http", - "hyper", + "http 0.2.9", + "hyper 0.14.27", "hyper-tls", "lazy_static", "log", @@ -1824,8 +1860,8 @@ dependencies = [ "bytes", "crc32fast", "futures", - "http", - "hyper", + "http 0.2.9", + "hyper 0.14.27", "hyper-tls", "lazy_static", "log", @@ -1848,7 +1884,7 @@ dependencies = [ "chrono", "dirs-next", "futures", - "hyper", + "hyper 0.14.27", "serde", "serde_json", "shlex", @@ -1866,7 +1902,7 @@ dependencies = [ "chrono", "dirs-next", "futures", - "hyper", + "hyper 0.14.27", "serde", "serde_json", "shlex", @@ -1913,8 +1949,8 @@ dependencies = [ "futures", "hex", "hmac 0.11.0", - "http", - "hyper", + "http 0.2.9", + "hyper 0.14.27", "log", "md-5 0.9.1", "percent-encoding", @@ -1939,8 +1975,8 @@ dependencies = [ "futures", "hex", "hmac 0.11.0", - "http", - "hyper", + "http 0.2.9", + "hyper 0.14.27", "log", "md-5 0.9.1", "percent-encoding", @@ -2016,7 +2052,7 @@ dependencies = [ "hex-simd", "hmac 0.12.1", "httparse", - "hyper", + "hyper 0.14.27", "md-5 0.10.5", "memchr", "mime", diff --git a/api/s3/Cargo.toml b/api/s3/Cargo.toml index 044a0bb..98b61a0 100644 --- a/api/s3/Cargo.toml +++ b/api/s3/Cargo.toml @@ -10,7 +10,7 @@ publish = false [dependencies] baza = { package = "baza-lib", path = "../../lib" } -hyper = "0.14" +hyper = "1.0" s3-server = "0.2" secrecy = "0.8" tokio-util = { version = "0.7", features = ["io", "compat"] }