From a1a57139b1cfb9f18f6b83a4b9bdf8731024d9d6 Mon Sep 17 00:00:00 2001 From: katelyn martin Date: Sun, 1 Dec 2024 00:00:00 +0000 Subject: [PATCH] refactor(deps): define `linkerd2-proxy-api` using table (#3473) this is a small cosmetic tweak to the cargo workspace manifest. this defines the proxy api as a toml table, to help give us a more natural place to hang the (inert) example of a git dependency used in development. Signed-off-by: katelyn martin --- Cargo.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4dc0376167..dbe976fd03 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -102,13 +102,16 @@ h2 = { version = "0.3" } http = { version = "0.2" } http-body = { version = "0.4" } hyper = { version = "0.14", default-features = false } -linkerd2-proxy-api = "0.15.0" prost = { version = "0.12" } prost-types = { version = "0.12" } tokio-rustls = { version = "0.26", default-features = false, features = ["ring", "logging"] } tonic = { version = "0.10", default-features = false } tonic-build = { version = "0.10", default-features = false } -# linkerd2-proxy-api = { git = "https://github.com/linkerd/linkerd2-proxy-api.git", branch = "main" } + +[workspace.dependencies.linkerd2-proxy-api] +version = "0.15.0" +# git = "https://github.com/linkerd/linkerd2-proxy-api.git" +# branch = "main" # NB: hyperium/hyper#3796 backports the server connection builder's # `max_pending_accept_reset_streams()` method. once released, we can depend on