mirror of https://github.com/linkerd/linkerd2.git
26 lines
601 B
TOML
26 lines
601 B
TOML
[package]
|
|
name = "linkerd-policy-controller-k8s-api"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
k8s-openapi = { version = "0.17", default-features = false, features = [
|
|
"v1_20",
|
|
] }
|
|
k8s-gateway-api = "0.11"
|
|
kube = { version = "0.80", default-features = false, features = [
|
|
"client",
|
|
"derive",
|
|
"runtime",
|
|
] }
|
|
ipnet = { version = "2.7", features = ["json"] }
|
|
schemars = "0.8"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
serde_yaml = "0.8"
|
|
thiserror = "1"
|
|
tokio = { version = "1", features = ["time"] }
|
|
tracing = "0.1"
|