-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
56 lines (51 loc) · 1.5 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
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "secure-client"
version = "0.1.0"
authors = [
"yaoxinjing <[email protected]>",
]
publish = false
edition = "2021"
license = "Apache-2.0"
[package.metadata.release]
release = false
[features]
default = [ "kubederive", "ws", "latest", "runtime"]
kubederive = ["kube/derive"]
runtime = ["kube/runtime"]
ws = ["kube/ws"]
latest = ["k8s-openapi/v1_25"]
[dependencies]
futures = "0.3.17"
tracing = "0.1.36"
tracing-subscriber = "0.3.3"
anyhow = "1.0.44"
tokio = { version = "1.14.0", features = ["full"]}
tokio-util = "0.7.0"
#kube = { version = "0.78.0", features = ["runtime", "derive"] }
#k8s-openapi = { version = "0.17.0" }
serde_yaml = "0.8.21"
clap = { version = "4.1.1", features = ["derive"] }
either = "1.6.1"
edit = "0.1.3"
tokio-stream = "0.1.11"
crossterm = {version = "0.25.0" }
getrandom = { version = "0.2", features = ["rdrand"] }
aes-gcm = "0.10.1"
postcard ={ version = "1.0", features = ["alloc"] }
serde = { version = "1.0", default-features = false, features = ["alloc"] }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
serde_derive = { version = "1.0.106", default-features = false}
spin = "0.9.2"
hmac = "0.12.1"
sha2 = { version = "0.10.6", default-features = false, features = ["force-soft"]}
hex-literal = "0.3.4"
base64ct = { version = "1.5.3", features = ["alloc"]}
rand = "0.8.5"
strum = "0.24"
strum_macros = "0.24"
kube = {version = "^0.82.2" }
k8s-openapi = { version = "0.18.0" }
env_logger = "0.10.0"
[dependencies.lazy_static]
version = "1.0"