diff --git a/Cargo.lock b/Cargo.lock index 2e6c6fca..523cdedf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1954,9 +1954,9 @@ dependencies = [ [[package]] name = "hyper" -version = "0.14.24" +version = "0.14.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e011372fa0b68db8350aa7a248930ecc7839bf46d8485577d69f117a75f164c" +checksum = "cc5e554ff619822309ffd57d8734d77cd5ce6238bc956f037ea06c58238c9899" dependencies = [ "bytes", "futures-channel", diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index 4e70c999..8462c344 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -36,7 +36,7 @@ chrono = { version = "0.4.23", default-features = false, features = ["clock", "s futures = "0.3.27" # lightwalletd sends JSON-RPC requests over HTTP 1.1 -hyper = { version = "0.14.24", features = ["http1", "server"] } +hyper = { version = "0.14.25", features = ["http1", "server"] } jsonrpc-core = "18.0.0" jsonrpc-derive = "18.0.0" diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index 0838bb91..515d3940 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -149,7 +149,7 @@ inferno = { version = "0.11.15", default-features = false, optional = true } tracing-journald = { version = "0.3.0", optional = true } # prod feature filter-reload -hyper = { version = "0.14.24", features = ["http1", "http2", "server"], optional = true } +hyper = { version = "0.14.25", features = ["http1", "http2", "server"], optional = true } # prod feature prometheus metrics-exporter-prometheus = { version = "0.11.0", default-features = false, features = ["http-listener"], optional = true } @@ -185,7 +185,7 @@ semver = "1.0.16" serde_json = { version = "1.0.94", features = ["preserve_order"] } tempfile = "3.4.0" -hyper = { version = "0.14.24", features = ["http1", "http2", "server"]} +hyper = { version = "0.14.25", features = ["http1", "http2", "server"]} reqwest = "0.11.14" tokio = { version = "1.26.0", features = ["full", "tracing", "test-util"] }