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.
24 lines
531 B
TOML
24 lines
531 B
TOML
[package]
|
|
name = "swactor-transport"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "AGPL-3.0-only"
|
|
|
|
[lib]
|
|
name = "swactor_transport"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
swactor = { path = "../..", features = ["serde", "transport"] }
|
|
ed25519-dalek = { version = "2", features = ["std", "rand_core", "serde"] }
|
|
rand_core = { version = "0.6", features = ["getrandom"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
rustc-hash = "2"
|
|
parking_lot = "0.12"
|
|
|
|
[dev-dependencies]
|
|
proptest = "1"
|
|
|
|
[lints]
|
|
workspace = true
|