forked from linkerd/linkerd2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 1.05 KB
/
Copy pathCargo.toml
File metadata and controls
35 lines (31 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[workspace]
resolver = "2"
members = [
"policy-controller",
"policy-controller/core",
"policy-controller/grpc",
"policy-controller/k8s/api",
"policy-controller/k8s/index",
"policy-controller/k8s/status",
"policy-controller/runtime",
"policy-test",
]
[profile.release]
lto = "thin"
[workspace.dependencies]
http = "1"
hyper = "1"
k8s-openapi = { version = "0.24", features = ["v1_31"] }
kube = { version = "0.98", default-features = false }
kubert = { version = "0.23", default-features = false }
prometheus-client = { version = "0.23", default-features = false }
tonic = { version = "0.12", default-features = false }
tower = { version = "0.5", default-features = false }
[workspace.dependencies.k8s-gateway-api]
# TODO(ver): Remove this once we update to a proper generated version of the gateway api bindings.
git = "https://github.com/linkerd/k8s-gateway-api-rs"
features = ["experimental"]
[workspace.dependencies.linkerd2-proxy-api]
git = "https://github.com/linkerd/linkerd2-proxy-api"
branch = "main"
features = ["inbound", "outbound"]