-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (40 loc) · 1.04 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
[package]
name = "s3bto-rs"
description = "S3 bucket TLS operator"
version = "0.1.0"
edition = "2021"
[[bin]]
doc = false
name = "controller"
path = "src/main.rs"
[[bin]]
doc = false
name = "crdgen"
path = "src/crdgen.rs"
[lib]
name = "controller"
path = "src/lib.rs"
[dependencies]
futures = "0.3.25"
tokio = { version = "1.23.0", features = ["macros", "rt-multi-thread"] }
k8s-openapi = { version = "0.18.0", features = ["v1_25"], default-features = false }
schemars = { version = "0.8.11", features = ["chrono"] }
serde = { version = "1.0.148", features = ["derive"] }
serde_json = "1.0.89"
serde_yaml = "0.9.18"
chrono = { version = "0.4.23", features = ["serde"] }
tonic = { version = "0.8.3", optional = true }
thiserror = "1.0.37"
anyhow = "1.0.69"
log = "0.4.17"
simple_logger = "4.1.0"
lazy_static = "1.4.0"
[dev-dependencies]
assert-json-diff = "2.0.2"
http = "0.2.8"
hyper = "0.14.23"
tower-test = "0.4.0"
k8s-openapi = { version = "0.18.0", features = ["v1_25"]}
[dependencies.kube]
features = ["runtime", "client", "derive"]
version = "0.82.0"