-
Notifications
You must be signed in to change notification settings - Fork 33
/
Cargo.toml
51 lines (47 loc) · 1.15 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "netease_music_tui"
version = "0.1.5"
authors = ["betta <[email protected]>"]
license = "MIT"
keywords = ["netease", "player", "music", "tui"]
repository = "https://github.com/betta-cyber/netease-music-tui"
categories = ["rodio", "music"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tui = "0.6.2"
termion = "1.5"
failure = "0.1.6"
reqwest = { version = "0.10.1", features = ["blocking", "cookies", "gzip", "socks"] }
lazy_static = "1.0"
serde = "1.0.101"
serde_derive = "1.0.104"
serde_json = "1.0"
unicode-width = "0.1.5"
config = "0.12.0"
openssl = "0.10.25"
base64 = "0.11.0"
hex = "0.4.0"
num-bigint = "0.2"
rand = "0.7.2"
serde_urlencoded = "0.6.1"
chrono = "0.4"
regex = "1.3.1"
simple-logging = "2.0.2"
log = "0.4"
log-panics = "2.0.0"
dirs = "2.0.2"
cpal = "0.13.4"
rodio = { version = "0.15.0"}
tempfile = "3.1.0"
tokio = { version = "0.2", features = ["macros"] }
futures = "0.3.1"
bytes = "0.4"
byteorder = "1.3"
mp3-duration = "0.1.7"
dbus = { version = "0.7.1", optional = true}
[features]
dbus_mpris = ["dbus"]
[[bin]]
name = "ncmt"
path = "src/main.rs"