Files
frid/Cargo.toml
T

40 lines
1.0 KiB
TOML
Raw Normal View History

2026-07-10 12:45:47 +03:00
[workspace]
resolver = "3"
2026-07-10 15:10:03 +03:00
members = [
"crates/federation-net",
"crates/artist-dht",
2026-07-16 17:24:43 +03:00
"crates/music-dht",
2026-07-10 15:10:03 +03:00
"apps/federation-net-demo",
"apps/artist-dht-cli",
]
2026-07-10 12:45:47 +03:00
[workspace.package]
edition = "2024"
license = "MIT OR Apache-2.0"
2026-07-10 15:10:03 +03:00
rust-version = "1.91"
2026-07-10 12:45:47 +03:00
[workspace.dependencies]
2026-07-10 15:10:03 +03:00
federation-net = { path = "crates/federation-net" }
2026-07-10 12:45:47 +03:00
iroh = "1"
iroh-base = "1"
iroh-tickets = "1"
2026-07-16 16:04:05 +03:00
mainline = "7"
2026-07-10 12:45:47 +03:00
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time", "io-util", "io-std", "signal"] }
serde = { version = "1", features = ["derive"] }
postcard = { version = "1", features = ["alloc"] }
blake3 = "1"
2026-07-10 15:10:03 +03:00
futures = "0.3"
uuid = { version = "1", features = ["v7"] }
unicode-normalization = "0.1"
2026-07-17 13:20:07 +03:00
rusqlite = { version = "0.32", features = ["bundled"] }
2026-07-20 02:00:40 +03:00
async-trait = "0.1"
2026-07-10 12:45:47 +03:00
thiserror = "2"
tracing = "0.1"
clap = { version = "4", features = ["derive"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = "1"
2026-07-10 15:10:03 +03:00
rustyline = "18"
2026-07-10 12:45:47 +03:00
data-encoding = "2"
rand = "0.9"
tempfile = "3"