-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·32 lines (30 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
executable file
·32 lines (30 loc) · 1.07 KB
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
[package]
name = "cdbootstrap"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.0", features = [
"macros",
"rt-multi-thread",
] } # Macros for easy project setup and testing, multi-threaded runtime for best utilization of resources
kube = { version = "0.87.2", default-features = true, features = [
"derive",
"runtime",
] } # Library for talking to Kubernetes API
k8s-openapi = { version = "0.20.0", default-features = false, features = [
"v1_26",
] } # Kube-rs depends on k8s-openapi
futures = "0.3"
# All serde dependencies are used to serialize/deserialize CRDs and other Kubernetes-related structs
serde = "1"
serde_json = "1.0"
schemars = "0.8"
thiserror = "1" # Custom Error definitions and convenient error mappings
garde = { version = "0.16.1", default-features = false, features = ["derive"] }
anyhow = "1.0.44"
tracing = "0.1.36"
tracing-subscriber = "0.3.3"
azure_core = "0.13.0"
azure_identity = "0.13.0"
azure_security_keyvault = "0.13.0"