From 60cfde6f0cc8046c88688ecf1c989f745c4f0b53 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Nov 2022 02:42:38 +0000 Subject: [PATCH] build(deps): bump hyper from 0.14.21 to 0.14.22 (#5525) Bumps [hyper](https://github.com/hyperium/hyper) from 0.14.21 to 0.14.22. - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/v0.14.22/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.21...v0.14.22) --- updated-dependencies: - dependency-name: hyper dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] 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 6b95ddd9f..5788314ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1807,9 +1807,9 @@ dependencies = [ [[package]] name = "hyper" -version = "0.14.21" +version = "0.14.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41a2df176f359a22aee9c8657e674f7aa54e9ba48b512a798e5ca36a1f51065c" +checksum = "abfba89e19b959ca163c7752ba59d737c1ceea53a5d31a149c805446fc958064" dependencies = [ "bytes", "futures-channel", diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index 7211dde79..c5048c1ea 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -17,7 +17,7 @@ chrono = { version = "0.4.22", default-features = false, features = ["clock", "s futures = "0.3.25" # lightwalletd sends JSON-RPC requests over HTTP 1.1 -hyper = { version = "0.14.21", features = ["http1", "server"] } +hyper = { version = "0.14.22", features = ["http1", "server"] } jsonrpc-core = "18.0.0" jsonrpc-derive = "18.0.0" diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index c0337636a..3782eb100 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -125,7 +125,7 @@ inferno = { version = "0.11.12", default-features = false, optional = true } tracing-journald = { version = "0.3.0", optional = true } # prod feature filter-reload -hyper = { version = "0.14.21", features = ["http1", "http2", "server"], optional = true } +hyper = { version = "0.14.22", features = ["http1", "http2", "server"], optional = true } # prod feature prometheus metrics-exporter-prometheus = { version = "0.11.0", default-features = false, features = ["http-listener"], optional = true } @@ -160,7 +160,7 @@ semver = "1.0.14" serde_json = { version = "1.0.87", features = ["preserve_order"] } tempfile = "3.3.0" -hyper = { version = "0.14.21", features = ["http1", "http2", "server"]} +hyper = { version = "0.14.22", features = ["http1", "http2", "server"]} reqwest = "0.11.12" tokio = { version = "1.21.2", features = ["full", "tracing", "test-util"] }