sal/rhai/Cargo.toml
Mahmoud-Emad 52f2f7e3c4 feat: Add Kubernetes module to SAL
- Add Kubernetes cluster management and operations
- Include pod, service, and deployment management
- Implement pattern-based resource deletion
- Support namespace creation and management
- Provide Rhai scripting wrappers for all functions
- Include production safety features (timeouts, retries, rate limiting)
2025-06-30 14:56:54 +03:00

36 lines
1021 B
TOML

[package]
name = "sal-rhai"
version = "0.1.0"
edition = "2021"
authors = ["PlanetFirst <info@incubaid.com>"]
description = "SAL Rhai - Rhai scripting integration for the System Abstraction Layer"
repository = "https://git.threefold.info/herocode/sal"
license = "Apache-2.0"
[dependencies]
# Core Rhai engine
rhai = { workspace = true }
# Error handling
thiserror = { workspace = true }
# UUID for temporary file generation
uuid = { workspace = true }
# All SAL packages that this aggregation package depends on
sal-os = { path = "../os" }
sal-process = { path = "../process" }
sal-git = { path = "../git" }
sal-vault = { path = "../vault" }
sal-redisclient = { path = "../redisclient" }
sal-postgresclient = { path = "../postgresclient" }
sal-virt = { path = "../virt" }
sal-mycelium = { path = "../mycelium" }
sal-text = { path = "../text" }
sal-net = { path = "../net" }
sal-zinit-client = { path = "../zinit_client" }
sal-kubernetes = { path = "../kubernetes" }
[dev-dependencies]
tempfile = { workspace = true }