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
51 lines (43 loc) · 1.54 KB
/
Cargo.toml
File metadata and controls
51 lines (43 loc) · 1.54 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[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]
gateway-api = "0.16"
http = "1"
hyper = "1"
k8s-openapi = { version = "0.25", features = ["v1_33"] }
kube = { version = "1.1", default-features = false }
kubert = { version = "0.25", default-features = false }
prometheus-client = { version = "0.23", default-features = false }
tonic = { version = "0.14", default-features = false }
tower = { version = "0.5", default-features = false }
linkerd-policy-controller = { path = "./policy-controller" }
linkerd-policy-controller-core = { path = "./policy-controller/core" }
linkerd-policy-controller-grpc = { path = "./policy-controller/grpc" }
linkerd-policy-controller-k8s-api = { path = "./policy-controller/k8s/api" }
linkerd-policy-test = { path = "./policy-test" }
[workspace.dependencies.hyper-util]
version = "0.1"
default-features = false
features = ["tracing"]
[workspace.dependencies.linkerd-policy-controller-k8s-index]
path = "./policy-controller/k8s/index"
[workspace.dependencies.linkerd-policy-controller-k8s-status]
path = "./policy-controller/k8s/status"
[workspace.dependencies.linkerd-policy-controller-runtime]
path = "./policy-controller/runtime"
default-features = false
[workspace.dependencies.linkerd2-proxy-api]
version = "0.18.0"
features = ["inbound", "outbound"]