Skip to content

Commit f11cc20

Browse files
committed
chore(hyper): upgrade to hyper 0.14.32
this commit upgrades to hyper 0.14.32, removing the manifest's `[patch]` section. hyperium/hyper#3796 backported a method we use when building http/2 connections. #3457 patched the workspace to rely on a git dependency of hyper at commit `a24f0c0a`. this work has been released in version 0.14.32. this commit also changes `deny.toml`, removing the exception we carved out for hyper in #3457. for more information, see: * hyperium/hyper#3796 * linkerd/linkerd2#8733 * https://github.com/hyperium/hyper/commits/0.14.x * #3457 * 03f5577 Signed-off-by: katelyn martin <[email protected]>
1 parent 17e52f9 commit f11cc20

File tree

3 files changed

+4
-12
lines changed

3 files changed

+4
-12
lines changed

Cargo.lock

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -942,8 +942,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
942942

943943
[[package]]
944944
name = "hyper"
945-
version = "0.14.31"
946-
source = "git+https://github.com/hyperium/hyper.git?rev=a24f0c0a#a24f0c0af8e1f4c6b7cc3a47c83eb6e4af88aca6"
945+
version = "0.14.32"
946+
source = "registry+https://github.com/rust-lang/crates.io-index"
947+
checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
947948
dependencies = [
948949
"bytes",
949950
"futures-channel",

Cargo.toml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -99,15 +99,7 @@ lto = true
9999
[workspace.dependencies]
100100
http = { version = "0.2" }
101101
http-body = { version = "0.4" }
102-
hyper = { version = "0.14", default-features = false }
102+
hyper = { version = "0.14.32", default-features = false }
103103
linkerd2-proxy-api = "0.15.0"
104104
tokio-rustls = { version = "0.26", default-features = false, features = ["ring", "logging"] }
105105
# linkerd2-proxy-api = { git = "https://github.com/linkerd/linkerd2-proxy-api.git", branch = "main" }
106-
107-
# NB: hyperium/hyper#3796 backports the server connection builder's
108-
# `max_pending_accept_reset_streams()` method. once released, we can depend on
109-
# 0.14.32 or later, but until then will point our hyper dependency to the
110-
# commit in the 0.14 branch.
111-
[patch.'crates-io'.hyper]
112-
git = "https://github.com/hyperium/hyper.git"
113-
rev = "a24f0c0a"

deny.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,4 @@ skip-tree = [
7171
[sources]
7272
unknown-registry = "deny"
7373
unknown-git = "deny"
74-
allow-git = ["https://github.com/hyperium/hyper.git"]
7574
allow-registry = ["https://github.com/rust-lang/crates.io-index"]

0 commit comments

Comments
 (0)