From a2ca2ee750c754d6b4dd37ffb0bd6fe9a97a66e8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Dec 2023 02:20:58 +0000 Subject: [PATCH] Update hyper requirement from 0.14 to 1.1 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.1.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 e7f99e529e07..aebd9e03f5f1 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.1", 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 } @@ -68,7 +68,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.1.0", features = ["server"] } rand = "0.8" tempfile = "3.1.0"