swactor/crates/swactor-node/Cargo.toml

23 lines
608 B
TOML
Raw Normal View History

2026-02-16 15:25:17 +00:00
[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"