From 11edf31c8b1e581dc3e1b8534d8c88ad989fdbdf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Aug 2025 05:10:49 +0000 Subject: [PATCH] chore(deps): Bump hyper from 1.6.0 to 1.7.0 Bumps [hyper](https://github.com/hyperium/hyper) from 1.6.0 to 1.7.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/v1.6.0...v1.7.0) --- updated-dependencies: - dependency-name: hyper dependency-version: 1.7.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 +++++++++------- openstack_sdk/Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a8a3b5b7b..14da8f17e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1472,13 +1472,14 @@ dependencies = [ [[package]] name = "hyper" -version = "1.6.0" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80" +checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e" dependencies = [ + "atomic-waker", "bytes", "futures-channel", - "futures-util", + "futures-core", "h2", "http 1.3.1", "http-body 1.0.1", @@ -1486,6 +1487,7 @@ dependencies = [ "httpdate", "itoa", "pin-project-lite", + "pin-utils", "smallvec", "tokio", "want", @@ -1498,7 +1500,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "03a01595e11bdcec50946522c32dde3fc6914743000a68b93000965f2f02406d" dependencies = [ "http 1.3.1", - "hyper 1.6.0", + "hyper 1.7.0", "hyper-util", "rustls", "rustls-pki-types", @@ -1521,7 +1523,7 @@ dependencies = [ "futures-util", "http 1.3.1", "http-body 1.0.1", - "hyper 1.6.0", + "hyper 1.7.0", "ipnet", "libc", "percent-encoding", @@ -2250,7 +2252,7 @@ dependencies = [ "http 1.3.1", "http-body-util", "httpmock", - "hyper 1.6.0", + "hyper 1.7.0", "hyper-util", "itertools 0.14.0", "json-patch", @@ -2825,7 +2827,7 @@ dependencies = [ "http 1.3.1", "http-body 1.0.1", "http-body-util", - "hyper 1.6.0", + "hyper 1.7.0", "hyper-rustls", "hyper-util", "ipnet", diff --git a/openstack_sdk/Cargo.toml b/openstack_sdk/Cargo.toml index 671b2d8c1..42b5b652d 100644 --- a/openstack_sdk/Cargo.toml +++ b/openstack_sdk/Cargo.toml @@ -56,7 +56,7 @@ futures = {workspace = true} futures-util = { workspace = true } http = { workspace = true } http-body-util = "^0.1" -hyper = { version = "^1.6", features = ["full"] } +hyper = { version = "^1.7", features = ["full"] } hyper-util = { version = "^0.1", features = ["full"] } itertools = { workspace = true } json-patch = { workspace = true }