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"] }
|
|
|
|
|
swactor-process = { path = "../../crates/process" }
|
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
serde_json = "1"
|
|
|
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
2026-05-20 07:41:30 +00:00
|
|
|
distribution = { path = "../../crates/distribution", features = ["iroh", "collector"] }
|
2026-05-16 05:49:43 +00:00
|
|
|
iroh = "0.96"
|
|
|
|
|
urlencoding = "2"
|
|
|
|
|
base64 = "0.22"
|
2026-05-20 07:41:30 +00:00
|
|
|
libc = "0.2"
|
2026-05-16 05:49:43 +00:00
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "pp-gpu-node"
|
|
|
|
|
path = "src/bin/pp_gpu_node.rs"
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "pp-smoke-run"
|
|
|
|
|
path = "src/bin/pp_smoke_run.rs"
|
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
wiremock = "0.6"
|