...
This commit is contained in:
@@ -10,7 +10,6 @@ license = "Apache-2.0"
|
||||
[dependencies]
|
||||
# Use workspace dependencies for consistency
|
||||
regex = { workspace = true }
|
||||
redis = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
rhai = { workspace = true }
|
||||
|
@@ -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"]
|
||||
|
@@ -14,7 +14,8 @@ categories = ["os", "filesystem", "api-bindings"]
|
||||
dirs = { workspace = true }
|
||||
glob = { workspace = true }
|
||||
libc = { workspace = true }
|
||||
|
||||
anyhow = {workspace = true}
|
||||
reqwest = {workspace = true}
|
||||
# Error handling
|
||||
thiserror = { workspace = true }
|
||||
|
||||
|
@@ -14,7 +14,7 @@ rhai = { workspace = true }
|
||||
anyhow = { workspace = true }
|
||||
|
||||
# SAL dependencies
|
||||
sal-text = { path = "../text" }
|
||||
sal-text = { workspace = true }
|
||||
|
||||
# Optional features for specific OS functionality
|
||||
[target.'cfg(unix)'.dependencies]
|
||||
|
@@ -9,16 +9,16 @@ license = "Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
# Core dependencies
|
||||
anyhow = "1.0.98"
|
||||
tempfile = "3.5"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
rhai = { version = "1.12.0", features = ["sync"] }
|
||||
anyhow = { workspace = true }
|
||||
tempfile = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
rhai = { workspace = true }
|
||||
|
||||
# SAL dependencies
|
||||
sal-process = { path = "../process" }
|
||||
sal-os = { path = "../os" }
|
||||
sal-process = { workspace = true }
|
||||
sal-os = { workspace = true }
|
||||
|
||||
[dev-dependencies]
|
||||
tempfile = "3.5"
|
||||
lazy_static = "1.4.0"
|
||||
tempfile = { workspace = true }
|
||||
lazy_static = { workspace = true }
|
||||
|
Reference in New Issue
Block a user