-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
68 lines (59 loc) · 1.83 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "dizi"
version = "0.3.0"
authors = ["Jiayi Zhao <[email protected]>"]
edition = "2021"
description = "Terminal music player inspired by moc"
homepage = "https://github.com/kamiyaa/dizi"
repository = "https://github.com/kamiyaa/dizi"
license = "LGPL-3.0"
keywords = ["ratatui", "music-player"]
categories = ['command-line-interface', 'command-line-utilities']
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "dizi-server"
path = "src/bin/server/main.rs"
[[bin]]
name = "dizi"
path = "src/bin/client/main.rs"
[dependencies]
alphanumeric-sort = "^1"
chrono = "^0"
clap = { version = "^4", features = ["derive"] }
dirs-next = "^2"
globset = "^0"
lazy_static = "^1"
libc = "^0"
memmap = "^0"
m3u = "^1"
phf = { version = "^0", features = ["macros"], optional = true }
rand = "^0"
ratatui = { version = "^0", default-features = false, features = ["termion"] }
rustyline = "^4"
serde = { version = "^1", features = ["derive"] }
serde_json = "^1"
shell-words = "^1"
shellexpand = "^2"
signal-hook = "^0"
skim = "^0"
strfmt = "^0"
symphonia = { version = "^0", features = ["all"] }
termion = "^1"
tokio = { version = "^1", features = [ "macros", "rt", "rt-multi-thread" ] }
toml = "^0"
tracing = "^0"
tracing-subscriber = { version = "^0", features = [ "std", "env-filter" ] }
uuid = { version = "^0", features = ["v4"] }
unicode-width = "^0"
unicode-segmentation = "^1"
xdg = "^2"
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd"))'.dependencies]
cpal = { features = [ "jack" ], version = "^0" }
# pipewire = { optional = true, version = "^0" }
[target.'cfg(target_os = "windows")'.dependencies]
cpal = "^0"
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
cpal = "^0"
[features]
default = [ "devicons" ]
devicons = [ "phf" ]