-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (38 loc) · 1011 Bytes
/
Cargo.toml
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
[package]
name = "linkerd-extension-init"
version = "0.1.0"
authors = ["Linkerd Developers <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
publish = false
homepage = "https://linkerd.io"
repository = "https://github.com/linkerd/linkerd-extension-init"
[features]
default = ["openssl-tls", "openssl-vendored"]
openssl-tls = ["kube/openssl-tls"]
# Vendor openssl to statically link lib
openssl-vendored = ["openssl/vendored"]
[dependencies]
anyhow = "1"
json-patch = "1"
kubert = { version = "0.21", features = ["log"] }
openssl = { version = "0.10", optional = true }
serde = "1"
serde_json = "1"
serde_yaml = "0.9"
thiserror = "1"
tracing = "0.1"
[dependencies.clap]
version = "4"
default-features = false
features = ["derive", "help", "usage", "env", "std"]
[dependencies.kube]
version = "0.87"
default-features = false
features = ["client", "jsonpatch"]
[dependencies.k8s-openapi]
version = "0.20"
features = ["v1_22"]
[dependencies.tokio]
version = "1"
features = ["macros"]