init
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
[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"] }
|
||||
Reference in New Issue
Block a user