sal/rhai/Cargo.toml
Mahmoud-Emad e125bb6511
Some checks failed
Rhai Tests / Run Rhai Tests (push) Has been cancelled
Rhai Tests / Run Rhai Tests (pull_request) Has been cancelled
feat: Migrate SAL to Cargo workspace
- Migrate individual modules to independent crates
- Refactor dependencies for improved modularity
- Update build system and testing infrastructure
- Update documentation to reflect new structure
2025-06-24 12:39:18 +03:00

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 }