2026-05-16 05:49:43 +00:00
|
|
|
[workspace]
|
|
|
|
|
|
|
|
|
|
[package]
|
|
|
|
|
name = "pipeline-parallel-inference"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2024"
|
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
swactor = { path = "../..", features = ["transport", "serde", "std"] }
|
2026-06-09 09:29:07 +00:00
|
|
|
swactor-transport = { path = "../../crates/transport" }
|
|
|
|
|
# `ssh` enables the orchestrator's boot-phase telemetry: it SSHes into each
|
|
|
|
|
# rented node and streams the worker boot log onto its datastream.
|
|
|
|
|
swactor-process = { path = "../../crates/process", features = ["ssh"] }
|
2026-05-16 05:49:43 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
serde_json = "1"
|
2026-05-30 07:51:22 +00:00
|
|
|
reqwest = { version = "0.12", features = ["json", "stream"] }
|
|
|
|
|
futures-util = "0.3"
|
2026-05-16 05:49:43 +00:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2026-06-23 20:10:41 +00:00
|
|
|
distribution = { path = "../../crates/distribution" }
|
|
|
|
|
iroh-driver = { path = "../../crates/iroh-driver" }
|
2026-06-09 09:29:07 +00:00
|
|
|
datastream = { path = "../../crates/datastream" }
|
|
|
|
|
# Live runtime dashboard (HTTP overview/actors/topology pages, served on
|
|
|
|
|
# localhost when PP_DASHBOARD is set).
|
2026-06-06 17:53:25 +00:00
|
|
|
dashboard = { path = "../../crates/dashboard" }
|
2026-05-25 18:19:06 +00:00
|
|
|
iroh = "0.98"
|
2026-05-16 05:49:43 +00:00
|
|
|
urlencoding = "2"
|
|
|
|
|
base64 = "0.22"
|
2026-05-20 07:41:30 +00:00
|
|
|
libc = "0.2"
|
2026-06-23 20:10:41 +00:00
|
|
|
swactor-vastai = { path = "../../tools/vastai" }
|
2026-05-16 05:49:43 +00:00
|
|
|
|
|
|
|
|
[[bin]]
|
2026-05-30 07:51:22 +00:00
|
|
|
name = "pp-worker"
|
|
|
|
|
path = "src/bin/pp_worker.rs"
|
2026-05-16 05:49:43 +00:00
|
|
|
|
|
|
|
|
[[bin]]
|
2026-05-30 07:51:22 +00:00
|
|
|
name = "pp-orchestrator"
|
|
|
|
|
path = "src/bin/pp_orchestrator.rs"
|
2026-05-16 05:49:43 +00:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
wiremock = "0.6"
|
2026-05-26 08:09:22 +00:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
2026-05-28 07:05:41 +00:00
|
|
|
|
2026-05-29 08:55:10 +00:00
|
|
|
# These binaries are shipped to rented GPU nodes over the docker image on a
|
|
|
|
|
# cold lease, and over scp through vast.ai's throttled SSH proxy for manual
|
|
|
|
|
# swaps. Stripping debug symbols (~26MB -> ~18MB) trims both at no runtime cost.
|
2026-05-28 07:05:41 +00:00
|
|
|
[profile.release]
|
|
|
|
|
strip = true
|