Write tests for docker integration, as docker is how we will initially handle distribution on heterogeneous hardware.
15 lines
389 B
TOML
15 lines
389 B
TOML
[package]
|
|
name = "node"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "swactor-node"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
swactor = { path = "../..", features = ["serde", "tracing", "transport"] }
|
|
distribution = { path = "../distribution" }
|
|
runtime-dashboard = { path = "../runtime-dashboard", features = ["distribution"] }
|
|
clap = { version = "4", features = ["derive"] }
|
|
ctrlc = "3"
|