Files
furumi-fd/Cargo.toml
T

20 lines
719 B
TOML
Raw Normal View History

2026-07-16 17:22:32 +03:00
[package]
name = "furumi-fd"
version = "0.1.0"
edition = "2024"
description = "Localhost music library index manager: REST API over a local SQLite database"
[dependencies]
axum = "0.8"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal", "sync", "time"] }
# P2P federation: publishes the library index into a DHT and searches other
# peers' libraries. Local path dependency on the frid workspace.
music-dht = { path = "../../frid/crates/music-dht" }
sqlx = { version = "0.9", features = ["runtime-tokio", "sqlite"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = "0.4"
anyhow = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }