mirror of
https://github.com/Dummi26/musicdb.git
synced 2025-03-10 14:13:53 +01:00

server can now source its database and files from another server, but it will have its own queue and appears as separate to clients. the client now has gui-syncplayer-{local,network} modes which show the gui and also play the songs. using a syncplayer-network mode now automatically enables the cache manager, which should make waiting for songs to load less frequent.
17 lines
288 B
TOML
17 lines
288 B
TOML
[package]
|
|
name = "musicdb-lib"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
base64 = "0.22.1"
|
|
colorize = "0.1.0"
|
|
rand = "0.8.5"
|
|
rc-u8-reader = "2.0.16"
|
|
rodio = { version = "0.18.0", optional = true }
|
|
sysinfo = "0.30.12"
|
|
|
|
[features]
|
|
# default = ["playback"]
|
|
playback = ["dep:rodio"]
|