Skip to content

Commit 907e4bf

Browse files
authored
update linkerd2-proxy-api to v0.9.0 from crates.io (#2384)
This branch updates the dependency on `linkerd2-proxy-api` to use v0.9.0 from `crates.io` rather than via a Git dependency.
1 parent d6f20a6 commit 907e4bf

File tree

12 files changed

+15
-15
lines changed

12 files changed

+15
-15
lines changed

Cargo.lock

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1883,8 +1883,9 @@ dependencies = [
18831883

18841884
[[package]]
18851885
name = "linkerd2-proxy-api"
1886-
version = "0.8.0"
1887-
source = "git+https://github.com/linkerd/linkerd2-proxy-api?branch=main#ad750d839ceb18294406e0f118527122be56cf66"
1886+
version = "0.9.0"
1887+
source = "registry+https://github.com/rust-lang/crates.io-index"
1888+
checksum = "3c5191a6b6a0d97519b4746c09a5e92cb9f586cb808d1828f6d7f9889e9ba24d"
18881889
dependencies = [
18891890
"h2",
18901891
"http",

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,3 @@ lto = true
8585
webpki = { git = "https://github.com/linkerd/webpki", branch = "cert-dns-names-0.22" }
8686
boring = { git = "https://github.com/cloudflare/boring" }
8787
tokio-boring = { git = "https://github.com/cloudflare/boring" }
88-
linkerd2-proxy-api = { git = "https://github.com/linkerd/linkerd2-proxy-api", branch = "main" }

linkerd/app/inbound/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ linkerd-meshtls = { path = "../../meshtls", optional = true }
2929
linkerd-meshtls-rustls = { path = "../../meshtls/rustls", optional = true }
3030
linkerd-proxy-client-policy = { path = "../../proxy/client-policy" }
3131
linkerd-tonic-watch = { path = "../../tonic-watch" }
32-
linkerd2-proxy-api = { version = "0.8", features = ["inbound"] }
32+
linkerd2-proxy-api = { version = "0.9", features = ["inbound"] }
3333
once_cell = "1"
3434
parking_lot = "0.12"
3535
thiserror = "1"

linkerd/app/integration/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ ipnet = "2"
3434
linkerd-app = { path = "..", features = ["allow-loopback"] }
3535
linkerd-app-core = { path = "../core" }
3636
linkerd-metrics = { path = "../../metrics", features = ["test_util"] }
37-
linkerd2-proxy-api = { version = "0.8", features = [
37+
linkerd2-proxy-api = { version = "0.9", features = [
3838
"destination",
3939
"arbitrary",
4040
] }

linkerd/app/outbound/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ahash = "0.8"
2020
bytes = "1"
2121
http = "0.2"
2222
futures = { version = "0.3", default-features = false }
23-
linkerd2-proxy-api = { version = "0.8", features = ["outbound"] }
23+
linkerd2-proxy-api = { version = "0.9", features = ["outbound"] }
2424
linkerd-app-core = { path = "../core" }
2525
linkerd-app-test = { path = "../test", optional = true }
2626
linkerd-distribute = { path = "../../distribute" }

linkerd/http-route/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ tracing = "0.1"
1717
url = "2"
1818

1919
[dependencies.linkerd2-proxy-api]
20-
version = "0.8"
20+
version = "0.9"
2121
features = ["http-route", "grpc-route"]
2222
optional = true
2323

linkerd/proxy/api-resolve/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ async-stream = "0.3"
1414
futures = { version = "0.3", default-features = false }
1515
linkerd-addr = { path = "../../addr" }
1616
linkerd-error = { path = "../../error" }
17-
linkerd2-proxy-api = { version = "0.8", features = ["destination"] }
17+
linkerd2-proxy-api = { version = "0.9", features = ["destination"] }
1818
linkerd-proxy-core = { path = "../core" }
1919
linkerd-stack = { path = "../../stack" }
2020
linkerd-tls = { path = "../../tls" }

linkerd/proxy/client-policy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ proto = [
1818
ahash = "0.8"
1919
ipnet = "2"
2020
http = "0.2"
21-
linkerd2-proxy-api = { version = "0.8", optional = true, features = [
21+
linkerd2-proxy-api = { version = "0.9", optional = true, features = [
2222
"outbound",
2323
] }
2424
linkerd-error = { path = "../../error" }

linkerd/proxy/identity-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish = false
88

99
[dependencies]
1010
futures = { version = "0.3", default-features = false }
11-
linkerd2-proxy-api = { version = "0.8", features = ["identity"] }
11+
linkerd2-proxy-api = { version = "0.9", features = ["identity"] }
1212
linkerd-error = { path = "../../error" }
1313
linkerd-identity = { path = "../../identity" }
1414
linkerd-metrics = { path = "../../metrics" }

linkerd/proxy/server-policy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ prost-types = { version = "0.11", optional = true }
1717
thiserror = "1"
1818

1919
[dependencies.linkerd2-proxy-api]
20-
version = "0.8"
20+
version = "0.9"
2121
features = ["inbound"]
2222
optional = true
2323

0 commit comments

Comments
 (0)