2026-02-12 09:13:50 +00:00
|
|
|
[package]
|
|
|
|
|
name = "distribution"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2024"
|
|
|
|
|
|
2026-02-15 04:55:36 +00:00
|
|
|
[features]
|
|
|
|
|
default = ["tcp"]
|
|
|
|
|
tcp = []
|
|
|
|
|
iroh = ["dep:iroh", "dep:tokio"]
|
|
|
|
|
|
2026-02-12 09:13:50 +00:00
|
|
|
[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"
|
2026-02-15 04:55:36 +00:00
|
|
|
iroh = { version = "0.96", optional = true }
|
|
|
|
|
tokio = { version = "1", features = ["rt-multi-thread"], optional = true }
|
2026-02-12 09:13:50 +00:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
serde_json = "1"
|