From e9ed2ce51ac8c4188b7acd548ffe1266f69d7bb5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 9 Nov 2022 18:18:41 +0000 Subject: [PATCH] Bump hyper from 0.14.22 to 0.14.23 Bumps [hyper](https://github.com/hyperium/hyper) from 0.14.22 to 0.14.23. - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/v0.14.23/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.22...v0.14.23) --- 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 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4896348b..fbbfe035 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2050,9 +2050,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] name = "hyper" -version = "0.14.22" +version = "0.14.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abfba89e19b959ca163c7752ba59d737c1ceea53a5d31a149c805446fc958064" +checksum = "034711faac9d2166cb1baf1a2fb0b60b1f277f8492fd72176c17f3515e1abd3c" dependencies = [ "bytes 1.2.1", "futures-channel", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 4817b57f..d5538b84 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -13,7 +13,7 @@ axum = "0.6.0-rc.2" clap = { version = "4.0.18", features = ["derive"] } dotenv = "0.15.0" futures-util = "0.3.25" -hyper = { version = "0.14.22", features = ["full"] } +hyper = { version = "0.14.23", 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 4349fd3d..e68ae5e6 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -18,7 +18,7 @@ thiserror = "1.0.37" anyhow = "1.0.66" # Web server -hyper = { version = "0.14.22", features = ["full"] } +hyper = { version = "0.14.23", features = ["full"] } tower = "0.4.13" tower-http = { version = "0.3.4", features = ["cors"] } axum = { version = "0.6.0-rc.2", features = ["ws"] } diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 36817308..eaa15d7a 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -14,7 +14,7 @@ futures-util = "0.3.25" headers = "0.3.8" http = "0.2.8" http-body = "0.4.5" -hyper = "0.14.22" +hyper = "0.14.23" hyper-rustls = { version = "0.23.0", features = ["http1", "http2"], default-features = false, optional = true } once_cell = "1.16.0" opentelemetry = "0.18.0" diff --git a/crates/listener/Cargo.toml b/crates/listener/Cargo.toml index 938c1927..3c5bead0 100644 --- a/crates/listener/Cargo.toml +++ b/crates/listener/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0" bytes = "1.2.1" futures-util = "0.3.25" http-body = "0.4.5" -hyper = { version = "0.14.22", features = ["server", "http1", "http2", "tcp"] } +hyper = { version = "0.14.23", features = ["server", "http1", "http2", "tcp"] } pin-project-lite = "0.2.9" thiserror = "1.0.37" tokio = { version = "1.21.2", features = ["net", "rt", "macros", "signal", "time"] }