Skip to content

Commit

Permalink
refactor(deps): define linkerd2-proxy-api using table (#3473)
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
cratelyn committed Dec 19, 2024
1 parent 2fe2321 commit a1a5713
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a1a5713

Please sign in to comment.