swactor/crates/mvp-system/Cargo.toml

75 lines
1.7 KiB
TOML
Raw Normal View History

2026-06-23 07:12:45 +00:00
[package]
name = "mvp-system"
version = "0.1.0"
edition = "2024"
publish = false
[features]
default = []
2026-06-25 12:30:18 +00:00
local-e2e = ["dep:dashboard"]
2026-06-23 13:51:34 +00:00
[dependencies]
datastream = { path = "../datastream" }
2026-06-25 12:30:18 +00:00
dashboard = { path = "../dashboard", optional = true }
2026-06-23 13:51:34 +00:00
serde_json = "1"
serde = { version = "1", features = ["derive"] }
2026-06-25 12:30:18 +00:00
swactor = { path = "../..", features = ["serde", "transport"] }
swactor-transport = { path = "../transport" }
distribution = { path = "../distribution" }
iroh-driver = { path = "../iroh-driver" }
iroh = "0.98"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "process", "io-util", "sync", "time"] }
2026-07-01 08:44:25 +00:00
swactor-vastai = { path = "../../tools/vastai" }
parking_lot = "0.12"
2026-07-05 09:59:51 +00:00
blake3 = "1"
2026-06-23 07:12:45 +00:00
[target.'cfg(target_os = "linux")'.dependencies]
libc = "0.2"
2026-06-23 13:51:34 +00:00
2026-07-01 08:44:25 +00:00
[[bin]]
name = "mvp-node"
path = "src/bin/mvp_node.rs"
[[bin]]
name = "mvp-orch-one-node"
path = "src/bin/mvp_orch_one_node.rs"
[[bin]]
name = "mvp-chat"
path = "src/bin/mvp_chat.rs"
[[bin]]
name = "mvp-one-node-chat"
path = "src/bin/mvp_one_node_chat.rs"
required-features = ["local-e2e"]
[[bin]]
name = "mvp-local-e2e"
path = "src/bin/local_e2e.rs"
required-features = ["local-e2e"]
[[bin]]
name = "mvp-local-e2e-cluster"
path = "src/bin/local_e2e_cluster.rs"
required-features = ["local-e2e"]
[[bin]]
name = "mvp-dumb-worker"
path = "src/bin/dumb_worker.rs"
required-features = ["local-e2e"]
[[test]]
name = "local_unmocked_mvp_e2e"
path = "tests/local_unmocked_mvp_e2e.rs"
required-features = ["local-e2e"]
[[test]]
name = "gpu_worker_node_e2e"
path = "tests/gpu_worker_node_e2e.rs"
required-features = ["local-e2e"]
[[test]]
name = "local-e2e-cluster"
path = "tests/local_e2e_cluster.rs"
required-features = ["local-e2e"]