added player

This commit is contained in:
Ultradesu
2026-07-16 18:45:39 +03:00
parent d77a985708
commit 50320c05c6
9 changed files with 645 additions and 13 deletions
+4 -3
View File
@@ -7,9 +7,9 @@ description = "Localhost music library index manager: REST API over a local SQLi
[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" }
# 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"
@@ -17,3 +17,4 @@ chrono = "0.4"
anyhow = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tokio-util = { version = "0.7", features = ["io"] }