21 lines
758 B
TOML
21 lines
758 B
TOML
[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, searches other
|
|
# peers' libraries and streams audio between peers.
|
|
music-dht = { git = "https://gt.hexor.cy/ab/frid.git" }
|
|
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"] }
|
|
tokio-util = { version = "0.7", features = ["io"] }
|