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.
24 lines
780 B
TOML
24 lines
780 B
TOML
[package]
|
|
name = "xtask"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "AGPL-3.0-only"
|
|
|
|
[dependencies]
|
|
serde_json = "1"
|
|
swactor = { path = "..", features = ["serde"] }
|
|
swactor-engine = { path = "../crates/engine" }
|
|
swactor-transport = { path = "../crates/transport" }
|
|
swactor-process = { path = "../crates/process" }
|
|
provisioning = { path = "../crates/provisioning" }
|
|
telemetry = { path = "../crates/telemetry" }
|
|
dashboard = { path = "../crates/dashboard", features = ["demo-control"] }
|
|
data-plane = { path = "../crates/data-plane" }
|
|
iroh-driver = { path = "../crates/iroh-driver" }
|
|
distribution = { path = "../crates/distribution" }
|
|
iroh = "0.98"
|
|
serde = { version = "1", features = ["derive"] }
|
|
parking_lot = "0.12"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
libc = "0.2"
|