2026-05-05 09:29:02 +01:00
|
|
|
[package]
|
2026-05-09 22:36:14 +01:00
|
|
|
name = "music"
|
2026-05-05 09:29:02 +01:00
|
|
|
version = "0.1.0"
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
authors.workspace = true
|
2026-05-09 22:36:14 +01:00
|
|
|
description = "music.famzheng.me — 听歌 + 练琴 曲目管理 (video / audio / pdf / png)"
|
2026-05-05 09:29:02 +01:00
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
cube-core = { path = "../../crates/cube-core" }
|
|
|
|
|
axum = { workspace = true, features = ["multipart"] }
|
|
|
|
|
tokio = { workspace = true }
|
2026-05-09 22:36:14 +01:00
|
|
|
tower = { workspace = true }
|
2026-05-05 09:29:02 +01:00
|
|
|
tower-http = { workspace = true }
|
|
|
|
|
tracing = { workspace = true }
|
|
|
|
|
serde = { workspace = true }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
rusqlite = { workspace = true }
|
2026-05-09 22:52:09 +01:00
|
|
|
reqwest = { workspace = true }
|
2026-05-10 14:51:53 +01:00
|
|
|
futures = { workspace = true }
|
|
|
|
|
tokio-stream = { workspace = true }
|