Iroh gives us a lot as a transport layer. Lets make use of it. Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
21 lines
560 B
TOML
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"
|