Some checks are pending
Rhai Tests / Run Rhai Tests (push) Waiting to run
- Add `sal-process` package for cross-platform process management. - Update workspace members in `Cargo.toml`. - Mark process package as complete in MONOREPO_CONVERSION_PLAN.md - Remove license information from `mycelium` and `os` READMEs.
32 lines
783 B
TOML
32 lines
783 B
TOML
[package]
|
|
name = "sal-process"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["PlanetFirst <info@incubaid.com>"]
|
|
description = "SAL Process - Cross-platform process management and command execution"
|
|
repository = "https://git.threefold.info/herocode/sal"
|
|
license = "Apache-2.0"
|
|
|
|
[dependencies]
|
|
# Core dependencies for process management
|
|
tempfile = "3.5"
|
|
rhai = { version = "1.12.0", features = ["sync"] }
|
|
anyhow = "1.0.98"
|
|
|
|
# SAL dependencies
|
|
sal-text = { path = "../text" }
|
|
|
|
# Optional features for specific OS functionality
|
|
[target.'cfg(unix)'.dependencies]
|
|
nix = "0.30.1"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows = { version = "0.61.1", features = [
|
|
"Win32_Foundation",
|
|
"Win32_System_Threading",
|
|
"Win32_Storage_FileSystem",
|
|
] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.5"
|