2026-06-23 07:12:45 +00:00
|
|
|
[package]
|
|
|
|
|
name = "mvp-system"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2024"
|
|
|
|
|
publish = false
|
|
|
|
|
|
2026-06-24 09:30:29 +00:00
|
|
|
[features]
|
|
|
|
|
default = []
|
|
|
|
|
local-e2e = [
|
|
|
|
|
"dep:swactor",
|
|
|
|
|
"dep:swactor-transport",
|
|
|
|
|
"dep:distribution",
|
|
|
|
|
"dep:iroh-driver",
|
|
|
|
|
"dep:iroh",
|
|
|
|
|
"dep:tokio",
|
|
|
|
|
"dep:dashboard",
|
|
|
|
|
"dep:parking_lot",
|
|
|
|
|
]
|
2026-06-23 13:51:34 +00:00
|
|
|
|
|
|
|
|
[dependencies]
|
2026-06-24 09:30:29 +00:00
|
|
|
datastream = { path = "../datastream" }
|
2026-06-23 13:51:34 +00:00
|
|
|
serde_json = "1"
|
2026-06-24 09:30:29 +00:00
|
|
|
parking_lot = { version = "0.12", optional = true }
|
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
swactor = { path = "../..", features = ["serde", "transport"], optional = true }
|
|
|
|
|
swactor-transport = { path = "../transport", optional = true }
|
|
|
|
|
distribution = { path = "../distribution", optional = true }
|
|
|
|
|
iroh-driver = { path = "../iroh-driver", optional = true }
|
|
|
|
|
iroh = { version = "0.98", optional = true }
|
|
|
|
|
dashboard = { path = "../dashboard", optional = true }
|
|
|
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "process", "io-util", "sync", "time"], optional = true }
|
|
|
|
|
|
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-06-24 09:30:29 +00:00
|
|
|
[[bin]]
|
|
|
|
|
name = "mvp-local-e2e"
|
|
|
|
|
path = "src/bin/local_e2e.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"]
|