-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
50 lines (44 loc) · 1.41 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
[package]
name = "kube-saver"
version = "0.10.2"
edition = "2021"
authors = ["Mahesh Rayas<maheshrayas@gmail.com>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "kube-saver"
path = "src/main.rs"
[lib]
name = "saver"
path = "src/lib.rs"
[dependencies]
actix-web = "4.5.1"
log = "0.4"
tokio = { version = "1.18.2", features = ["full"] }
kube = { version = "0.98.0", features = ["runtime", "derive"] }
kube-runtime = "0.98.0" # Custom controller support
k8s-openapi = { version = "0.24.0", features = ["latest"] }
futures = "~0.3"
serde = "~1.0"
serde_json = "~1.0"
serde_yaml = "0.9.1"
schemars = "~0.8"
thiserror = "2.0" # Custom Error definitions and convenient error mappings
yaml-rust = "0.4.5"
jmespath = { version = "0.3.0", features = ["sync"] }
regex = "1.5.5"
chrono-tz = "0.10.0"
async-trait = "0.1.53"
tracing = "0.1.37"
clap = { version = "4.4.0", features = ["derive"] }
openssl = { version = "0.10", features = ["vendored"] }
openssl-src = ">=111.25, <300.0"
chrono={version = "0.4.22", default-features = false, features = ["clock"]}
reqwest= {version = "0.12.12", features= ["multipart", "json"]}
csv="1.1.6"
tracing-subscriber = { version = "0.3.12", features = ["json", "env-filter"] }
prometheus = "0.13.3"
[dev-dependencies]
anyhow="1.0"
lazy_static = "1.0"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(tarpaulin_include)"] }