This commit is contained in:
2025-08-05 16:00:24 +02:00
parent 6e01f99958
commit dfd6931c5b
16 changed files with 129 additions and 421 deletions

View File

@@ -11,46 +11,46 @@ categories = ["api-bindings", "development-tools"]
[dependencies]
# Kubernetes client library
kube = { version = "0.95.0", features = ["client", "config", "derive"] }
k8s-openapi = { version = "0.23.0", features = ["latest"] }
kube = { workspace = true }
k8s-openapi = { workspace = true }
# Async runtime
tokio = { version = "1.45.0", features = ["full"] }
tokio = { workspace = true }
# Production safety features
tokio-retry = "0.3.0"
governor = "0.6.3"
tower = { version = "0.5.2", features = ["timeout", "limit"] }
tokio-retry = { workspace = true }
governor = { workspace = true }
tower = { workspace = true }
# Error handling
thiserror = "2.0.12"
anyhow = "1.0.98"
thiserror = { workspace = true }
anyhow = { workspace = true }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
# Regular expressions for pattern matching
regex = "1.10.2"
regex = { workspace = true }
# Logging
log = "0.4"
log = { workspace = true }
# Rhai scripting support (optional)
rhai = { version = "1.12.0", features = ["sync"], optional = true }
once_cell = "1.20.2"
rhai = { workspace = true, optional = true }
once_cell = { workspace = true }
# UUID for resource identification
uuid = { version = "1.16.0", features = ["v4"] }
uuid = { workspace = true }
# Base64 encoding for secrets
base64 = "0.22.1"
base64 = { workspace = true }
[dev-dependencies]
tempfile = "3.5"
tokio-test = "0.4.4"
env_logger = "0.11.5"
tempfile = { workspace = true }
tokio-test = { workspace = true }
env_logger = { workspace = true }
[features]
default = ["rhai"]