diff --git a/Cargo.lock b/Cargo.lock index 01bf4800b..8dec8a3dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -199,7 +199,7 @@ dependencies = [ "futures-util", "http 0.2.12", "http-body 0.4.6", - "hyper 0.14.28", + "hyper 0.14.29", "itoa", "matchit", "memchr", @@ -1051,7 +1051,7 @@ dependencies = [ "hostname 0.1.0", "http 0.2.12", "humanize", - "hyper 0.14.28", + "hyper 0.14.29", "hyper-rustls 0.24.2", "indexmap 2.2.6", "inventory", @@ -1529,9 +1529,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] name = "hyper" -version = "0.14.28" +version = "0.14.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" +checksum = "f361cde2f109281a220d4307746cdfd5ee3f410da58a70377762396775634b33" dependencies = [ "bytes", "futures-channel", @@ -1578,7 +1578,7 @@ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" dependencies = [ "futures-util", "http 0.2.12", - "hyper 0.14.28", + "hyper 0.14.29", "rustls 0.21.12", "tokio", "tokio-rustls 0.24.1", @@ -1609,7 +1609,7 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1" dependencies = [ - "hyper 0.14.28", + "hyper 0.14.29", "pin-project-lite", "tokio", "tokio-io-timeout", @@ -3734,7 +3734,7 @@ dependencies = [ "event", "futures", "futures-util", - "hyper 0.14.28", + "hyper 0.14.29", "rand", "tokio", "tokio-util", @@ -3951,7 +3951,7 @@ dependencies = [ "h2", "http 0.2.12", "http-body 0.4.6", - "hyper 0.14.28", + "hyper 0.14.29", "hyper-timeout 0.4.1", "percent-encoding", "pin-project", @@ -3978,7 +3978,7 @@ dependencies = [ "h2", "http 0.2.12", "http-body 0.4.6", - "hyper 0.14.28", + "hyper 0.14.29", "hyper-timeout 0.4.1", "percent-encoding", "pin-project", @@ -4420,7 +4420,7 @@ dependencies = [ "hostname 0.1.0", "http 0.2.12", "humanize", - "hyper 0.14.28", + "hyper 0.14.29", "indexmap 2.2.6", "inventory", "jaeger", diff --git a/Cargo.toml b/Cargo.toml index d33a096d8..ba0540458 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -361,7 +361,7 @@ tokio-util = { version = "0.7.11", default-features = false, features = ["codec" tracing = { version = "0.1.40", default-features = false } # HTTP -hyper = { version = "0.14.28", default-features = false, features = ["full"] } +hyper = { version = "0.14.29", default-features = false, features = ["full"] } http = { version = "0.2.12", default-features = false } # Tower diff --git a/lib/framework/Cargo.toml b/lib/framework/Cargo.toml index 50939572d..0b5f60c3c 100644 --- a/lib/framework/Cargo.toml +++ b/lib/framework/Cargo.toml @@ -46,7 +46,7 @@ hickory-resolver = { version = "0.24" } humanize = { git = "https://github.com/f1shl3gs/humanize", default-features = false, features = ["duration", "bytes", "serde"], rev = "3ce391414e9417c36ca386b50ef82e6d2e1882dd" } hostname = { path = "../hostname" } http = { version = "0.2.12", default-features = false } -hyper = { version = "0.14.28", default-features = false, features = ["full"] } +hyper = { version = "0.14.29", default-features = false, features = ["full"] } hyper-rustls = { version = "0.24.2", default-features = false } indexmap = { version = "2.2.6", default-features = false, features = ["serde"] } inventory = { version = "0.3.15", default-features = false } diff --git a/lib/testify/Cargo.toml b/lib/testify/Cargo.toml index 414e83921..fa20eda62 100644 --- a/lib/testify/Cargo.toml +++ b/lib/testify/Cargo.toml @@ -6,7 +6,7 @@ publish = false [dependencies] event = { path = "../event" } -hyper = { version = "0.14.28", default-features = false, features = ["full"] } +hyper = { version = "0.14.29", default-features = false, features = ["full"] } futures = { version = "0.3.30", default-features = false } futures-util = { version = "0.3.30", default-features = false } rand = { version = "0.8.5", default-features = false }