From 2f5d2dd8ca47d3ca572a72fbc0fe1ed97144301a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 Feb 2023 19:06:16 +0000 Subject: [PATCH] build(deps): bump hyper from 0.14.23 to 0.14.24 Bumps [hyper](https://github.com/hyperium/hyper) from 0.14.23 to 0.14.24. - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/v0.14.24/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.23...v0.14.24) --- updated-dependencies: - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/cli/Cargo.toml | 2 +- crates/handlers/Cargo.toml | 2 +- crates/http/Cargo.toml | 2 +- crates/listener/Cargo.toml | 2 +- crates/oidc-client/Cargo.toml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 56f8ffe8..593eb6f0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2286,9 +2286,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] name = "hyper" -version = "0.14.23" +version = "0.14.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "034711faac9d2166cb1baf1a2fb0b60b1f277f8492fd72176c17f3515e1abd3c" +checksum = "5e011372fa0b68db8350aa7a248930ecc7839bf46d8485577d69f117a75f164c" dependencies = [ "bytes 1.4.0", "futures-channel", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 6ff5876e..6fb8be07 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -12,7 +12,7 @@ axum = "0.6.4" camino = "1.1.2" clap = { version = "4.1.4", features = ["derive"] } dotenv = "0.15.0" -hyper = { version = "0.14.23", features = ["full"] } +hyper = { version = "0.14.24", features = ["full"] } itertools = "0.10.5" listenfd = "1.0.0" rand = "0.8.5" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 62a589bd..8386ca90 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -19,7 +19,7 @@ anyhow = "1.0.68" sentry = { version = "0.29.2", default-features = false } # Web server -hyper = { version = "0.14.23", features = ["full"] } +hyper = { version = "0.14.24", features = ["full"] } tower = "0.4.13" tower-http = { version = "0.3.5", features = ["cors"] } axum = "0.6.4" diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 098ea208..825f30c8 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -14,7 +14,7 @@ futures-util = "0.3.26" headers = "0.3.8" http = "0.2.8" http-body = "0.4.5" -hyper = "0.14.23" +hyper = "0.14.24" hyper-rustls = { version = "0.23.2", features = ["http1", "http2"], default-features = false, optional = true } once_cell = "1.17.0" opentelemetry = "0.18.0" diff --git a/crates/listener/Cargo.toml b/crates/listener/Cargo.toml index 78153279..39c40dd3 100644 --- a/crates/listener/Cargo.toml +++ b/crates/listener/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0" bytes = "1.4.0" futures-util = "0.3.26" http-body = "0.4.5" -hyper = { version = "0.14.23", features = ["server", "http1", "http2", "tcp"] } +hyper = { version = "0.14.24", features = ["server", "http1", "http2", "tcp"] } pin-project-lite = "0.2.9" thiserror = "1.0.38" tokio = { version = "1.25.0", features = ["net", "rt", "macros", "signal", "time"] } diff --git a/crates/oidc-client/Cargo.toml b/crates/oidc-client/Cargo.toml index 38618d58..e9f0b646 100644 --- a/crates/oidc-client/Cargo.toml +++ b/crates/oidc-client/Cargo.toml @@ -55,7 +55,7 @@ features = ["http1", "http2", "rustls-native-certs"] default-features = false optional = true [dependencies.hyper] -version = "0.14.23" +version = "0.14.24" features = ["client", "http1", "http2", "stream", "runtime" ] optional = true [dependencies.tower-http]