Skip to content

Commit ecc6ffa

Browse files
committed
chore(cargo.toml): define h2 as a workspace dependency
this commit modifies the workspace manifest, defining h2 as a workspace dependency. no changes to the lockfile are made because this commit does not affect the dependency graph of the project. * linkerd/linkerd2#8733 Signed-off-by: katelyn martin <[email protected]>
1 parent 6ce6c43 commit ecc6ffa

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ lto = true
9898

9999
[workspace.dependencies]
100100
bytes = { version = "1" }
101+
h2 = { version = "0.3" }
101102
http = { version = "0.2" }
102103
http-body = { version = "0.4" }
103104
hyper = { version = "0.14", default-features = false }

linkerd/app/integration/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ flakey = []
1919
[dependencies]
2020
bytes = { workspace = true }
2121
futures = { version = "0.3", default-features = false, features = ["executor"] }
22-
h2 = "0.3"
22+
h2 = { workspace = true }
2323
http = { workspace = true }
2424
http-body = { workspace = true }
2525
hyper = { workspace = true, features = [

linkerd/app/test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ client-policy = ["linkerd-proxy-client-policy", "tonic", "linkerd-http-route"]
1414

1515
[dependencies]
1616
futures = { version = "0.3", default-features = false }
17-
h2 = "0.3"
17+
h2 = { workspace = true }
1818
http = { workspace = true }
1919
http-body = { workspace = true }
2020
hyper = { workspace = true, features = ["deprecated", "http1", "http2"] }

linkerd/proxy/http/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ async-trait = "0.1"
1616
bytes = { workspace = true }
1717
drain = "0.1"
1818
futures = { version = "0.3", default-features = false }
19-
h2 = "0.3"
19+
h2 = { workspace = true }
2020
http = { workspace = true }
2121
http-body = { workspace = true }
2222
httparse = "1"

0 commit comments

Comments
 (0)