Skip to content

Commit

Permalink
build(deps): Update hyper requirement from 0.14.27 to 1.1.0
Browse files Browse the repository at this point in the history
Updates the requirements on [hyper](https://github.com/hyperium/hyper) to permit the latest version.
- [Release notes](https://github.com/hyperium/hyper/releases)
- [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md)
- [Commits](hyperium/hyper@v0.14.27...v1.1.0)

---
updated-dependencies:
- dependency-name: hyper
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 28, 2023
1 parent d5d59e7 commit 7691b4d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ log = "0.4.20"
rustls = { version = "0.21.5", features = ["logging", "dangerous_configuration"]} # https://github.com/rustls/rustls/tags
hyper-rustls = "0.24.1"
rustls-native-certs = "0.7.0"
hyper = { version = "0.14.27", features = ["full"], optional = true }
hyper = { version = "1.1.0", features = ["full"], optional = true }
tokio-rustls = { version = "0.24.1", optional = true }
rand = "0.8.5"
random-manager = "0.0.5" # https://crates.io/crates/random-manager/versions
Expand Down
2 changes: 1 addition & 1 deletion core/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ readme = "README.md"
[dependencies]
futures = "0.3.28"
http = "0.2.9"
hyper = { version = "0.14.25", features = ["full"] }
hyper = { version = "1.1.0", features = ["full"] }
log = "0.4.20"
tokio = { version = "1.32.0", features = ["full"] } # https://github.com/tokio-rs/tokio/releases
2 changes: 1 addition & 1 deletion crates/avalanche-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ecdsa = { version = "0.16.7", features = ["rfc6979", "verifying"] } # https://gi
ethers-core = { version = "=2.0.11", features = ["eip712"] } # https://github.com/gakonst/ethers-rs/releases
hex = "0.4.3"
hmac = "0.12.1"
hyper = { version = "0.14.26"}
hyper = { version = "1.1.0"}
k256 = { version = "0.13.1", features = ["ecdsa"] } # https://github.com/RustCrypto/elliptic-curves/tree/master/k256
lazy_static = "1.4.0"
log = "0.4.20"
Expand Down

0 comments on commit 7691b4d

Please sign in to comment.