Remove co-dependencies for different modules found in `crates` and migrate the development history to a new repository. The docs were stale, and largely not getting used, so simply deleted for now. When code stabilizes more, they will become useful again. Co-authored-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com> Co-committed-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
24 lines
679 B
TOML
24 lines
679 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"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
serde_yaml = "0.9"
|
|
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"
|