- 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)
149 lines
3.7 KiB
TOML
149 lines
3.7 KiB
TOML
[package]
|
|
name = "sal"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["PlanetFirst <info@incubaid.com>"]
|
|
description = "System Abstraction Layer - A library for easy interaction with operating system features"
|
|
repository = "https://git.threefold.info/herocode/sal"
|
|
license = "Apache-2.0"
|
|
keywords = ["system", "os", "abstraction", "platform", "filesystem"]
|
|
categories = ["os", "filesystem", "api-bindings"]
|
|
readme = "README.md"
|
|
|
|
[workspace]
|
|
members = [
|
|
".",
|
|
"vault",
|
|
"git",
|
|
"redisclient",
|
|
"mycelium",
|
|
"text",
|
|
"os",
|
|
"net",
|
|
"zinit_client",
|
|
"process",
|
|
"virt",
|
|
"postgresclient",
|
|
"kubernetes",
|
|
"rhai",
|
|
"herodo",
|
|
"service_manager",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.metadata]
|
|
# Workspace-level metadata
|
|
rust-version = "1.70.0"
|
|
|
|
[workspace.dependencies]
|
|
# Core shared dependencies with consistent versions
|
|
anyhow = "1.0.98"
|
|
base64 = "0.22.1"
|
|
dirs = "6.0.0"
|
|
env_logger = "0.11.8"
|
|
futures = "0.3.30"
|
|
glob = "0.3.1"
|
|
lazy_static = "1.4.0"
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
once_cell = "1.18.0"
|
|
rand = "0.8.5"
|
|
regex = "1.8.1"
|
|
reqwest = { version = "0.12.15", features = ["json"] }
|
|
rhai = { version = "1.12.0", features = ["sync"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tempfile = "3.5"
|
|
thiserror = "2.0.12"
|
|
tokio = { version = "1.45.0", features = ["full"] }
|
|
url = "2.4"
|
|
uuid = { version = "1.16.0", features = ["v4"] }
|
|
|
|
# Database dependencies
|
|
postgres = "0.19.10"
|
|
r2d2_postgres = "0.18.2"
|
|
redis = "0.31.0"
|
|
tokio-postgres = "0.7.13"
|
|
|
|
# Crypto dependencies
|
|
chacha20poly1305 = "0.10.1"
|
|
k256 = { version = "0.13.4", features = ["ecdsa", "ecdh"] }
|
|
sha2 = "0.10.7"
|
|
hex = "0.4"
|
|
|
|
# Ethereum dependencies
|
|
ethers = { version = "2.0.7", features = ["legacy"] }
|
|
|
|
# Platform-specific dependencies
|
|
nix = "0.30.1"
|
|
windows = { version = "0.61.1", features = [
|
|
"Win32_Foundation",
|
|
"Win32_System_Threading",
|
|
"Win32_Storage_FileSystem",
|
|
] }
|
|
|
|
# Specialized dependencies
|
|
zinit-client = "0.3.0"
|
|
urlencoding = "2.1.3"
|
|
tokio-test = "0.4.4"
|
|
|
|
[dependencies]
|
|
thiserror = "2.0.12" # For error handling in the main Error enum
|
|
|
|
# Optional dependencies - users can choose which modules to include
|
|
sal-git = { path = "git", optional = true }
|
|
sal-kubernetes = { path = "kubernetes", optional = true }
|
|
sal-redisclient = { path = "redisclient", optional = true }
|
|
sal-mycelium = { path = "mycelium", optional = true }
|
|
sal-text = { path = "text", optional = true }
|
|
sal-os = { path = "os", optional = true }
|
|
sal-net = { path = "net", optional = true }
|
|
sal-zinit-client = { path = "zinit_client", optional = true }
|
|
sal-process = { path = "process", optional = true }
|
|
sal-virt = { path = "virt", optional = true }
|
|
sal-postgresclient = { path = "postgresclient", optional = true }
|
|
sal-vault = { path = "vault", optional = true }
|
|
sal-rhai = { path = "rhai", optional = true }
|
|
sal-service-manager = { path = "service_manager", optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
|
|
# Individual module features
|
|
git = ["dep:sal-git"]
|
|
kubernetes = ["dep:sal-kubernetes"]
|
|
redisclient = ["dep:sal-redisclient"]
|
|
mycelium = ["dep:sal-mycelium"]
|
|
text = ["dep:sal-text"]
|
|
os = ["dep:sal-os"]
|
|
net = ["dep:sal-net"]
|
|
zinit_client = ["dep:sal-zinit-client"]
|
|
process = ["dep:sal-process"]
|
|
virt = ["dep:sal-virt"]
|
|
postgresclient = ["dep:sal-postgresclient"]
|
|
vault = ["dep:sal-vault"]
|
|
rhai = ["dep:sal-rhai"]
|
|
service_manager = ["dep:sal-service-manager"]
|
|
|
|
# Convenience feature groups
|
|
core = ["os", "process", "text", "net"]
|
|
clients = ["redisclient", "postgresclient", "zinit_client", "mycelium"]
|
|
infrastructure = ["git", "vault", "kubernetes", "virt", "service_manager"]
|
|
scripting = ["rhai"]
|
|
all = [
|
|
"git",
|
|
"kubernetes",
|
|
"redisclient",
|
|
"mycelium",
|
|
"text",
|
|
"os",
|
|
"net",
|
|
"zinit_client",
|
|
"process",
|
|
"virt",
|
|
"postgresclient",
|
|
"vault",
|
|
"rhai",
|
|
"service_manager",
|
|
]
|