From c4032e2b7f6dbee8a9480d3c978c70a3cfc3332c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Feb 2023 00:32:06 +0000 Subject: [PATCH] build(deps): bump hyper from 0.14.23 to 0.14.24 (#6094) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- zebra-rpc/Cargo.toml | 2 +- zebrad/Cargo.toml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2e2bf2c8a..6b8887fe0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1839,9 +1839,9 @@ dependencies = [ [[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", "futures-channel", diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index df38bacb2..71aae8b95 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -37,7 +37,7 @@ chrono = { version = "0.4.23", default-features = false, features = ["clock", "s futures = "0.3.26" # lightwalletd sends JSON-RPC requests over HTTP 1.1 -hyper = { version = "0.14.23", features = ["http1", "server"] } +hyper = { version = "0.14.24", features = ["http1", "server"] } jsonrpc-core = "18.0.0" jsonrpc-derive = "18.0.0" diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index 322858dcd..a845cdaa3 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -147,7 +147,7 @@ inferno = { version = "0.11.14", default-features = false, optional = true } tracing-journald = { version = "0.3.0", optional = true } # prod feature filter-reload -hyper = { version = "0.14.23", features = ["http1", "http2", "server"], optional = true } +hyper = { version = "0.14.24", features = ["http1", "http2", "server"], optional = true } # prod feature prometheus metrics-exporter-prometheus = { version = "0.11.0", default-features = false, features = ["http-listener"], optional = true } @@ -183,7 +183,7 @@ semver = "1.0.16" serde_json = { version = "1.0.91", features = ["preserve_order"] } tempfile = "3.3.0" -hyper = { version = "0.14.23", features = ["http1", "http2", "server"]} +hyper = { version = "0.14.24", features = ["http1", "http2", "server"]} reqwest = "0.11.14" tokio = { version = "1.25.0", features = ["full", "tracing", "test-util"] }