diff --git a/Cargo.lock b/Cargo.lock index 76db67f3..30de2e49 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1982,9 +1982,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] name = "hyper" -version = "0.14.20" +version = "0.14.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02c929dc5c39e335a03c405292728118860721b10190d98c2a0f0efd5baafbac" +checksum = "abfba89e19b959ca163c7752ba59d737c1ceea53a5d31a149c805446fc958064" dependencies = [ "bytes 1.2.1", "futures-channel", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index f272f9b2..b3484ef0 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -13,7 +13,7 @@ anyhow = "1.0.66" clap = { version = "4.0.18", features = ["derive"] } dotenv = "0.15.0" tower = { version = "0.4.13", features = ["full"] } -hyper = { version = "0.14.20", features = ["full"] } +hyper = { version = "0.14.22", features = ["full"] } serde_yaml = "0.9.14" serde_json = "1.0.87" url = "2.3.1" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index dd66a2c8..d0c8e41d 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -17,7 +17,7 @@ thiserror = "1.0.37" anyhow = "1.0.66" # Web server -hyper = { version = "0.14.20", features = ["full"] } +hyper = { version = "0.14.22", features = ["full"] } tower = "0.4.13" tower-http = { version = "0.3.4", features = ["cors"] } axum = "0.6.0-rc.2" diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 5085aadc..15410403 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -12,7 +12,7 @@ futures-util = "0.3.25" headers = "0.3.8" http = "0.2.8" http-body = "0.4.5" -hyper = "0.14.20" +hyper = "0.14.22" hyper-rustls = { version = "0.23.0", features = ["http1", "http2"], default-features = false, optional = true } once_cell = "1.16.0" opentelemetry = "0.18.0" diff --git a/crates/listener/Cargo.toml b/crates/listener/Cargo.toml index e26bcbaf..938c1927 100644 --- a/crates/listener/Cargo.toml +++ b/crates/listener/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0" bytes = "1.2.1" futures-util = "0.3.25" http-body = "0.4.5" -hyper = { version = "0.14.20", features = ["server", "http1", "http2", "tcp"] } +hyper = { version = "0.14.22", features = ["server", "http1", "http2", "tcp"] } pin-project-lite = "0.2.9" thiserror = "1.0.37" tokio = { version = "1.21.2", features = ["net", "rt", "macros", "signal", "time"] }