-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (40 loc) · 1.16 KB
/
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 = "neatkube"
version = "0.5.3"
edition = "2021"
[profile.release]
opt-level = 'z' # Optimize for size
lto = true
codegen-units = 1
[[bin]]
name = "nk"
[dependencies]
backtrace = "0.3.67"
base64 = "0.21.0"
bytes = "1.4.0"
clap = { version = "3.2.23", features = ["derive", "env"] }
clap_complete = "3.2.5"
dewey = "0.3.0"
directories = "4.0.1"
edit = "0.1.4"
futures = "0.3.27"
indicatif = "0.17.3"
k8s-openapi = { version = "0.17.0", features = ["v1_24"] }
kube-client = "0.78.0"
log = "0.4.17"
nix = { version = "0.26.2", features = ["process"] }
openssl = { version = "0.10.46", features = ["vendored", "v111"] }
os_str_bytes = { version = "6.4.1", default-features = false, features = ["raw_os_str"] }
randstr = "0.2.1"
reqwest = { version = "0.11.14", features = ["stream"] }
secrecy = "0.8.0"
serde = { version = "1.0.156", features = ["derive"] }
#serde_yaml = "0.9.17"
serde_yaml = "0.8.26"
tokio = { version = "1.26.0", features = ["rt-multi-thread", "process", "macros"] }
tokio-stream = "0.1.12"
minitmpl = { git = "https://github.com/Gottox/minitmpl.git", branch = "main" }
env_logger = "0.10.0"
[dev-dependencies]
tempfile = "3.4.0"
tokio-test = "0.4.2"