- Migrate individual modules to independent crates - Refactor dependencies for improved modularity - Update build system and testing infrastructure - Update documentation to reflect new structure
35 lines
977 B
TOML
35 lines
977 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" }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|