2026-05-14 07:19:28 +00:00
|
|
|
[workspace]
|
|
|
|
|
|
|
|
|
|
[package]
|
|
|
|
|
name = "single-gpu-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" }
|
2026-05-14 07:19:28 +00:00
|
|
|
swactor-process = { path = "../../crates/process" }
|
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
serde_json = "1"
|
|
|
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
|
distribution = { path = "../../crates/distribution", features = ["iroh"] }
|
2026-06-09 09:29:07 +00:00
|
|
|
iroh = "0.98"
|
2026-05-14 07:19:28 +00:00
|
|
|
urlencoding = "2"
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "gpu-node"
|
|
|
|
|
path = "src/bin/gpu_node.rs"
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "single-gpu-inference"
|
|
|
|
|
path = "src/bin/single_gpu_inference.rs"
|
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
wiremock = "0.6"
|