- Add a new service manager crate for dynamic service management - Integrate service manager with Rhai for scripting - Provide examples for circle worker management and basic usage - Add comprehensive tests for service lifecycle and error handling - Implement cross-platform support for macOS and Linux (zinit/systemd)
41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
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" }
|
|
sal-service-manager = { path = "../service_manager", features = ["rhai"] }
|
|
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|