Add actor-owned contextual process provisioning, descriptor bootstrap, scoped namespace operations, Python bindings, Myelin orchestration, and adversarial end-to-end coverage. Remove the superseded job runner, pipeline APIs, images, entrypoints, and specifications.
25 lines
552 B
TOML
25 lines
552 B
TOML
[package]
|
|
name = "swactor-process"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "AGPL-3.0-only"
|
|
|
|
[dependencies]
|
|
swactor = { path = "../..", default-features = false, features = ["no_random"] }
|
|
swactor-engine = { path = "../engine" }
|
|
tokio.workspace = true
|
|
telemetry = { path = "../telemetry" }
|
|
crossbeam-queue = "0.3.12"
|
|
libc = "0.2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
signal-hook = "0.3"
|
|
|
|
[dev-dependencies]
|
|
parking_lot = "0.12"
|
|
proptest = "1"
|
|
|
|
[lints]
|
|
workspace = true
|