swactor/crates/distribution/Cargo.toml
Zachery Aaron Shores-Chmielewski e3ae2df487 feat: add support for iroh as the transport layer (#40)
Iroh gives us a lot as a transport layer. Lets make use of it.


Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
2026-02-15 09:47:05 +00:00

21 lines
560 B
TOML

[package]
name = "distribution"
version = "0.1.0"
edition = "2024"
[features]
default = ["tcp"]
tcp = []
iroh = ["dep:iroh", "dep:tokio"]
[dependencies]
swactor = { path = "../..", features = ["serde", "transport"] }
ed25519-dalek = { version = "2", features = ["rand_core"] }
rand_core = { version = "0.6", features = ["getrandom"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
iroh = { version = "0.96", optional = true }
tokio = { version = "1", features = ["rt-multi-thread"], optional = true }
[dev-dependencies]
serde_json = "1"