swactor/apps/myelin/Cargo.toml

49 lines
1.1 KiB
TOML
Raw Normal View History

2026-06-23 07:12:45 +00:00
[package]
name = "myelin"
2026-06-23 07:12:45 +00:00
version = "0.1.0"
edition = "2024"
license = "AGPL-3.0-only"
2026-06-23 07:12:45 +00:00
publish = false
2026-07-07 10:40:02 +00:00
autobins = false
2026-06-23 07:12:45 +00:00
[features]
default = []
2026-07-22 07:50:53 +00:00
dashboard = []
2026-06-23 13:51:34 +00:00
[dependencies]
datastream = { path = "../../crates/datastream" }
data-plane = { path = "../../crates/data-plane" }
provisioning = { path = "../../crates/provisioning" }
dashboard = { path = "../../crates/dashboard" }
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 = "../../crates/transport" }
swactor-process = { path = "../../crates/process" }
distribution = { path = "../../crates/distribution" }
iroh-driver = { path = "../../crates/iroh-driver" }
2026-06-25 12:30:18 +00:00
iroh = "0.98"
tokio.workspace = true
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-07-07 10:40:02 +00:00
toml = "0.8"
2026-07-26 09:01:18 +00:00
ureq = "2"
2026-06-23 07:12:45 +00:00
[target.'cfg(target_os = "linux")'.dependencies]
libc = "0.2"
signal-hook = "0.3"
2026-06-23 13:51:34 +00:00
2026-07-01 08:44:25 +00:00
[[bin]]
name = "myelin-worker"
2026-07-07 10:40:02 +00:00
path = "src/bin/worker_node.rs"
2026-07-01 08:44:25 +00:00
[[bin]]
name = "myelin-orchestrator"
2026-07-07 10:40:02 +00:00
path = "src/bin/orchestrator.rs"
2026-07-01 08:44:25 +00:00
[[bin]]
name = "myelin-chat"
path = "src/bin/chat.rs"