swactor/crates/process/Cargo.toml
Zachery Aaron Shores-Chmielewski e3dd476e90 feat: native process manager (#47)
Enable swactor to spawn and manage native processes using ssh.
Co-authored-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
Co-committed-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
2026-02-23 04:44:46 +00:00

21 lines
594 B
TOML

[package]
name = "swactor-process"
version = "0.1.0"
edition = "2024"
[features]
default = []
ssh = ["dep:russh", "dep:russh-keys", "dep:tokio", "dep:async-trait"]
[dependencies]
swactor = { path = "../..", default-features = false, features = ["no_random"] }
crossbeam-queue = "0.3.12"
libc = "0.2"
russh = { version = "0.46", optional = true }
russh-keys = { version = "0.46", optional = true }
tokio = { version = "1", features = ["rt", "time", "sync"], optional = true }
async-trait = { version = "0.1", optional = true }
[dev-dependencies]
proptest = "1"
proptest-state-machine = "0.3"