Files
frid/Cargo.toml
T

41 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/furumi-library",
2026-07-16 17:24:43 +03:00
"crates/music-dht",
2026-07-10 15:10:03 +03:00
]
2026-07-10 12:45:47 +03:00
[workspace.package]
edition = "2024"
2026-07-26 03:48:30 +03:00
license = "WTFPL"
2026-07-26 03:51:15 +03:00
rust-version = "1.97"
2026-07-26 03:48:30 +03:00
repository = "https://gt.hexor.cy/ab/frid"
2026-07-10 12:45:47 +03:00
[workspace.dependencies]
2026-08-10 19:35:35 +01:00
federation-net = { path = "crates/federation-net", version = "0.3.0" }
music-dht = { path = "crates/music-dht", version = "0.4.0" }
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"] }
2026-07-24 16:12:14 +03:00
serde_json = "1"
2026-07-10 12:45:47 +03:00
postcard = { version = "1", features = ["alloc"] }
blake3 = "1"
2026-07-10 15:10:03 +03:00
futures = "0.3"
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"
directories = "6"
lofty = "0.22"
2026-07-10 12:45:47 +03:00
data-encoding = "2"
rand = "0.9"
tempfile = "3"