refactor: music-db crate

This commit is contained in:
mokurin000
2025-08-02 23:52:46 +08:00
parent f7b3161847
commit 503f5f3f33
11 changed files with 57 additions and 36 deletions

18
music_db/Cargo.toml Normal file
View File

@@ -0,0 +1,18 @@
[package]
name = "music-db"
version = "0.1.0"
edition = "2024"
[dependencies]
rustc-hash = "2.1.1"
rust_decimal = { version = "1.37.2", default-features = false, features = [
"serde-with-arbitrary-precision",
"macros",
] }
serde = { workspace = true }
serde_json = { workspace = true }
spdlog-rs = { workspace = true, optional = true }
[features]
log = ["dep:spdlog-rs"]