build(deps): bump hyper from 0.14.26 to 0.14.27

Bumps [hyper](https://github.com/hyperium/hyper) from 0.14.26 to 0.14.27.
- [Release notes](https://github.com/hyperium/hyper/releases)
- [Changelog](https://github.com/hyperium/hyper/blob/v0.14.27/CHANGELOG.md)
- [Commits](https://github.com/hyperium/hyper/compare/v0.14.26...v0.14.27)

---
updated-dependencies:
- dependency-name: hyper
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2023-06-26 20:00:26 +00:00
committed by Quentin Gliech
parent a068bc39b2
commit 9a6166c109
7 changed files with 8 additions and 8 deletions

4
Cargo.lock generated
View File

@@ -2639,9 +2639,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
[[package]]
name = "hyper"
version = "0.14.26"
version = "0.14.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4"
checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
dependencies = [
"bytes 1.4.0",
"futures-channel",

View File

@@ -14,7 +14,7 @@ camino = "1.1.4"
clap = { version = "4.3.6", features = ["derive"] }
dotenv = "0.15.0"
httpdate = "1.0.2"
hyper = { version = "0.14.26", features = ["full"] }
hyper = { version = "0.14.27", features = ["full"] }
itertools = "0.11.0"
listenfd = "1.0.1"
rand = "0.8.5"

View File

@@ -19,7 +19,7 @@ anyhow = "1.0.71"
sentry = { version = "0.31.5", default-features = false }
# Web server
hyper = { version = "0.14.26", features = ["full"] }
hyper = { version = "0.14.27", features = ["full"] }
tower = "0.4.13"
tower-http = { version = "0.4.1", features = ["cors"] }
axum = "0.6.18"

View File

@@ -14,7 +14,7 @@ futures-util = "0.3.28"
headers = "0.3.8"
http = "0.2.9"
http-body = "0.4.5"
hyper = "0.14.26"
hyper = "0.14.27"
hyper-rustls = { version = "0.24.0", features = ["http1", "http2"], default-features = false, optional = true }
once_cell = "1.18.0"
opentelemetry = "0.19.0"

View File

@@ -12,7 +12,7 @@ camino = "1.1.4"
convert_case = "0.6.0"
csv = "1.2.2"
futures-util = "0.3.28"
hyper = { version = "0.14.26", features = ["tcp", "client", "http1"] }
hyper = { version = "0.14.27", features = ["tcp", "client", "http1"] }
serde = { version = "1.0.164", features = ["derive"] }
tokio = { version = "1.28.2", features = ["macros", "rt-multi-thread", "fs", "io-util"] }
tracing = "0.1.37"

View File

@@ -9,7 +9,7 @@ license = "Apache-2.0"
bytes = "1.4.0"
futures-util = "0.3.28"
http-body = "0.4.5"
hyper = { version = "0.14.26", features = ["server", "http1", "http2", "tcp"] }
hyper = { version = "0.14.27", features = ["server", "http1", "http2", "tcp"] }
pin-project-lite = "0.2.9"
thiserror = "1.0.40"
tokio = { version = "1.28.2", features = ["net", "rt", "macros", "signal", "time"] }

View File

@@ -55,7 +55,7 @@ features = ["http1", "http2", "rustls-native-certs"]
default-features = false
optional = true
[dependencies.hyper]
version = "0.14.26"
version = "0.14.27"
features = ["client", "http1", "http2", "stream", "runtime" ]
optional = true
[dependencies.tower-http]