[package] name = "swactor-node" version = "0.1.0" edition = "2024" [dependencies] swactor = { path = "../..", features = ["serde", "tracing", "transport"] } runtime-dashboard = { path = "../runtime-dashboard", features = ["distribution"] } swactor-datastore = { path = "../datastore", features = ["node"] } distribution = { path = "../distribution" } clap = { version = "4", features = ["derive"] } ctrlc = "3" iroh = { version = "0.96", optional = true } [features] default = ["iroh"] tcp = ["distribution/tcp"] iroh = ["distribution/iroh", "dep:iroh"] [[bin]] name = "swactor-node" path = "src/main.rs"