-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
38 lines (34 loc) · 1.23 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
[package]
name = "tap"
version = "0.4.12"
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"
bincode = "2.0.0-rc.3"
clap = { version = "4.1.8", features = ["derive"] }
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"
lazy_static = "1.4.0"
lofty = "0.14.0"
rand = "0.8.5"
rodio = { git = "/~https://github.com/timdubbins/rodio", branch = "seek", features = ["symphonia-aac", "symphonia-flac", "symphonia-mp3", "symphonia-isomp4", "symphonia-wav", "vorbis"], default-features = false }
unicode-segmentation = "1.10.1"
unicode-width = "0.1.5"
walkdir = "2.0"
[features]
run_tests = []