[package] name = "sal-rhai" version = "0.1.0" edition = "2021" authors = ["PlanetFirst "] 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 = { workspace = true } sal-process = { workspace = true } sal-git = { workspace = true } sal-vault = { workspace = true } sal-redisclient = { workspace = true } sal-postgresclient = { workspace = true } sal-virt = { workspace = true } sal-mycelium = { workspace = true } sal-hetzner = { workspace = true } sal-text = { workspace = true } sal-net = { workspace = true } sal-zinit-client = { workspace = true } sal-kubernetes = { workspace = true } sal-service-manager = { workspace = true, features = ["rhai"] } [features] default = [] [dev-dependencies] tempfile = { workspace = true }