swactor/crates/iroh-driver/Cargo.toml
Zachery Aaron Shores-Chmielewski 5bbdfb041e runtime: checkpoint distributed execution and retained-node deployment
Integrate namespace and source-route lifecycle changes, contextual process cleanup, Python binding updates, and Myelin worker/orchestrator recovery. Keep the shared control contracts, deployment identity fencing, SSH bootstrap adapters, paid admission accounting, and VastAI cleanup implementation together with their consumers.

Migrate Iroh dependencies and telemetry transport/collection with dashboard and demo callsites, workspace build configuration, and actor-control-flow policy updates. This is an intermediate development checkpoint, not paid-provider qualification.

Review verification: contextual_process_guarantees (4 tests), telemetry_transport (4 tests), and shared control contracts (5 tests) passed. Historical five-node redeployment and campaign execution passed individually; complete ordered qualification remains pending.
2026-09-14 12:20:56 +03:00

35 lines
1 KiB
TOML

[package]
name = "iroh-driver"
version = "0.1.0"
edition = "2024"
license = "AGPL-3.0-only"
[lib]
name = "iroh_driver"
path = "src/lib.rs"
[dependencies]
swactor = { path = "../..", features = ["serde", "transport"] }
swactor-engine = { path = "../engine" }
swactor-transport = { path = "../transport" }
data-plane = { path = "../data-plane" }
distribution = { path = "../distribution" }
telemetry = { path = "../telemetry" }
crossbeam-channel = "0.5"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
lz4_flex = { version = "0.11", default-features = false, features = ["std"] }
postcard = { version = "1", features = ["alloc"] }
iroh.workspace = true
zstd = { version = "0.13", default-features = false }
# `test-utils` exposes `CaRootsConfig::insecure_skip_verify()` so clients can
# trust operator-controlled custom relays with self-signed QAD certs.
iroh-relay.workspace = true
tokio.workspace = true
parking_lot = "0.12"
[dev-dependencies]
iroh-relay = { workspace = true, features = ["server"] }
[lints]
workspace = true