From efd07ebb24a2045c4573723edfce4e859c3c3f0a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Feb 2024 13:40:21 +0000 Subject: [PATCH] Update hyper requirement from 0.14 to 1.2 in /object_store Updates the requirements on [hyper](https://github.com/hyperium/hyper) to permit the latest version. - [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.24...v1.2.0) --- updated-dependencies: - dependency-name: hyper dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- object_store/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/object_store/Cargo.toml b/object_store/Cargo.toml index f3aaf35fbb02..95c033594b10 100644 --- a/object_store/Cargo.toml +++ b/object_store/Cargo.toml @@ -45,7 +45,7 @@ walkdir = "2" # Cloud storage support base64 = { version = "0.21", default-features = false, features = ["std"], optional = true } -hyper = { version = "0.14", default-features = false, optional = true } +hyper = { version = "1.2", default-features = false, optional = true } quick-xml = { version = "0.31.0", features = ["serialize", "overlapped-lists"], optional = true } serde = { version = "1.0", default-features = false, features = ["derive"], optional = true } serde_json = { version = "1.0", default-features = false, optional = true } @@ -69,7 +69,7 @@ tls-webpki-roots = ["reqwest?/rustls-tls-webpki-roots"] [dev-dependencies] # In alphabetical order futures-test = "0.3" -hyper = { version = "0.14.24", features = ["server"] } +hyper = { version = "1.2.0", features = ["server"] } rand = "0.8" tempfile = "3.1.0"