swactor/crates/job-runner/Cargo.toml
Zachery Aaron Shores-Chmielewski f67dcbbec1 feat(myelin): replace chat app with fleet daemon
Replace the single-purpose chat runtime with a persistent fleet daemon that provisions, adopts, and controls nodes through the dashboard.

Add distributed job-runner actors and provider-backed deployment so jobs can materialize workspaces, execute remotely, and return outputs over iroh.
2026-08-18 14:23:07 +04:00

24 lines
522 B
TOML

[package]
name = "swactor-job-runner"
version = "0.1.0"
edition = "2024"
license = "AGPL-3.0-only"
publish = false
[lib]
name = "swactor_job_runner"
path = "src/lib.rs"
[dependencies]
swactor = { path = "../..", features = ["serde"] }
swactor-transport = { path = "../transport" }
swactor-process = { path = "../process" }
swactor-engine = { path = "../engine" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tar = "0.4"
parking_lot = "0.12"
[dev-dependencies]
tokio.workspace = true
tempfile = "3"