diff --git a/Cargo.lock b/Cargo.lock index 2e2bf2c8..6b8887fe 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 df38bacb..71aae8b9 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 322858dc..a845cdaa 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"] }