...

Text file src/github.com/linkerd/linkerd2/policy-test/Cargo.toml

Documentation: github.com/linkerd/linkerd2/policy-test

     1[package]
     2name = "linkerd-policy-test"
     3version = "0.1.0"
     4edition = "2021"
     5license = "Apache-2.0"
     6publish = false
     7
     8[dependencies]
     9anyhow = "1"
    10hyper = { version = "0.14", features = ["client", "http2"] }
    11futures = { version = "0.3", default-features = false }
    12ipnet = "2"
    13k8s-gateway-api = "0.15"
    14k8s-openapi = { version = "0.20", features = ["v1_22"] }
    15linkerd-policy-controller-core = { path = "../policy-controller/core" }
    16linkerd-policy-controller-k8s-api = { path = "../policy-controller/k8s/api" }
    17linkerd-policy-controller-grpc = { path = "../policy-controller/grpc" }
    18maplit = "1"
    19rand = "0.8"
    20serde = "1"
    21serde_json = "1"
    22schemars = "0.8"
    23tonic = { version = "0.10", default-features = false }
    24tokio = { version = "1", features = ["macros", "rt"] }
    25tracing = "0.1"
    26tracing-subscriber = { version = "0.3", features = ["env-filter"] }
    27
    28[dependencies.kube]
    29version = "0.87.1"
    30default-features = false
    31features = ["client", "openssl-tls", "runtime", "ws"]
    32
    33[dependencies.linkerd2-proxy-api]
    34version = "0.13"
    35features = ["inbound", "outbound"]
    36
    37[dev-dependencies]
    38tokio-test = "0.4"

View as plain text