-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
64 lines (60 loc) · 1.53 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
[package]
name = "tap"
version = "0.5.0"
authors = ["Tim Dubbins <timdubbins@gmail.com>"]
description = "An audio player for the terminal with fuzzy-finder"
documentation = "https://github.com/timdubbins/tap"
homepage = "https://github.com/timdubbins/tap"
repository = "https://github.com/timdubbins/tap"
keywords = [
"audio",
"player",
"fuzzy",
"finder",
"rust",
"cli",
"tui",
"music",
"terminal",
]
categories = ["command-line-utilities"]
license = "Unlicense OR MIT"
edition = "2021"
[[bin]]
bench = false
path = "src/main.rs"
name = "tap"
[dev-dependencies]
tempfile = "3.6"
[dependencies]
anyhow = "1.0.95"
bincode = "2.0.0-rc.3"
clap = { version = "4.1.8", features = ["derive"] }
colored = "2"
cursive = { git = "https://github.com/timdubbins/cursive", branch = "tap", features = [
"ncurses-backend",
"toml",
] }
expiring_bool = { git = "https://github.com/timdubbins/expiring_bool" }
fuzzy-matcher = "0.3.7"
lofty = "0.22.2"
once_cell = "1.20.3"
rand = { version = "0.8.5", features = ["small_rng"] }
rayon = "1.6"
regex = "1.11.1"
reqwest = { version = "0.11", features = ["blocking", "json"] }
rodio = { git = "https://github.com/timdubbins/rodio", branch = "seek", features = [
"symphonia-aac",
"symphonia-flac",
"symphonia-mp3",
"symphonia-isomp4",
"symphonia-wav",
"vorbis",
], default-features = false }
serde = { version = "1.0.217", features = ["derive"] }
serde_yaml = "0.9.34"
unicode-segmentation = "1.10.1"
unicode-width = "0.1.5"
walkdir = "2.0"
[features]
run_tests = []