From 9a6166c10930d332d2310fc9a11408a81e486a66 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Jun 2023 20:00:26 +0000 Subject: [PATCH] build(deps): bump hyper from 0.14.26 to 0.14.27 Bumps [hyper](https://github.com/hyperium/hyper) from 0.14.26 to 0.14.27. - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/v0.14.27/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.26...v0.14.27) --- 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/iana-codegen/Cargo.toml | 2 +- crates/listener/Cargo.toml | 2 +- crates/oidc-client/Cargo.toml | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f5a3c1cb7..f182e2881 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2639,9 +2639,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] name = "hyper" -version = "0.14.26" +version = "0.14.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4" +checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" dependencies = [ "bytes 1.4.0", "futures-channel", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index d5371ea12..fcdea8d84 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -14,7 +14,7 @@ camino = "1.1.4" clap = { version = "4.3.6", features = ["derive"] } dotenv = "0.15.0" httpdate = "1.0.2" -hyper = { version = "0.14.26", features = ["full"] } +hyper = { version = "0.14.27", features = ["full"] } itertools = "0.11.0" listenfd = "1.0.1" rand = "0.8.5" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index f3b552fbc..a65d275df 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -19,7 +19,7 @@ anyhow = "1.0.71" sentry = { version = "0.31.5", default-features = false } # Web server -hyper = { version = "0.14.26", features = ["full"] } +hyper = { version = "0.14.27", features = ["full"] } tower = "0.4.13" tower-http = { version = "0.4.1", features = ["cors"] } axum = "0.6.18" diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index e5b26ea33..d3cb9c9db 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -14,7 +14,7 @@ futures-util = "0.3.28" headers = "0.3.8" http = "0.2.9" http-body = "0.4.5" -hyper = "0.14.26" +hyper = "0.14.27" hyper-rustls = { version = "0.24.0", features = ["http1", "http2"], default-features = false, optional = true } once_cell = "1.18.0" opentelemetry = "0.19.0" diff --git a/crates/iana-codegen/Cargo.toml b/crates/iana-codegen/Cargo.toml index dba05b6f2..5a3b25e9e 100644 --- a/crates/iana-codegen/Cargo.toml +++ b/crates/iana-codegen/Cargo.toml @@ -12,7 +12,7 @@ camino = "1.1.4" convert_case = "0.6.0" csv = "1.2.2" futures-util = "0.3.28" -hyper = { version = "0.14.26", features = ["tcp", "client", "http1"] } +hyper = { version = "0.14.27", features = ["tcp", "client", "http1"] } serde = { version = "1.0.164", features = ["derive"] } tokio = { version = "1.28.2", features = ["macros", "rt-multi-thread", "fs", "io-util"] } tracing = "0.1.37" diff --git a/crates/listener/Cargo.toml b/crates/listener/Cargo.toml index 66f9d3641..decdd8351 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.28" http-body = "0.4.5" -hyper = { version = "0.14.26", features = ["server", "http1", "http2", "tcp"] } +hyper = { version = "0.14.27", features = ["server", "http1", "http2", "tcp"] } pin-project-lite = "0.2.9" thiserror = "1.0.40" tokio = { version = "1.28.2", features = ["net", "rt", "macros", "signal", "time"] } diff --git a/crates/oidc-client/Cargo.toml b/crates/oidc-client/Cargo.toml index be88bcb1c..a63b26b39 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.26" +version = "0.14.27" features = ["client", "http1", "http2", "stream", "runtime" ] optional = true [dependencies.tower-http]