[package] name = "sal-process" version = "0.1.0" edition = "2021" authors = ["PlanetFirst "] 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"