-
Notifications
You must be signed in to change notification settings - Fork 27
/
Cargo.toml
24 lines (23 loc) · 814 Bytes
/
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
[package]
name = "operator"
version = "0.1.0"
authors = ["Pavel Pscheidl <pavel2@pscheidl.cz>"]
edition = "2021"
[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.97", default-features = true, features = [
"derive",
"runtime",
] } # Library for talking to Kubernetes API
k8s-openapi = { version = "0.23", default-features = false, features = [
"v1_31",
] } # 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 = "2" # Custom Error definitions and convenient error mappings