-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
23 lines (22 loc) · 970 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "mpd-shuffler"
version = "0.1.0"
edition = "2021"
description = "Randomly shuffle your MPD library"
readme = "README.md"
license = "MIT"
keywords = ["mpd", "shuffle"]
homepage = "https://github.com/awused/mpd-shuffler"
repository = "https://github.com/awused/mpd-shuffler"
[dependencies]
awconf = { git = "https://github.com/awused/awconf" }
aw-shuffle = { git = "https://github.com/awused/aw-shuffle", features = [ "rocks" ] }
clap = { version = "4.5.4", features = ["derive"] }
futures-util = { version = "0.3.30", default-features = false }
mpd_protocol = { version = "=1.0.3", features = [ "async" ] }
once_cell = "1.19.0"
regex = "1.10.4"
serde = { version = "1.0.203", default-features = false, features = [ "derive" ] }
signal-hook = { version = "0.3.17", default-features = false }
signal-hook-tokio = { version = "0.3.1", features = [ "futures-v0_3" ] }
tokio = { version = "1.38.0", features = [ "macros", "process", "rt", "sync", "time" ] }