-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
44 lines (39 loc) · 1.08 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
[package]
name = "mmtc"
version = "0.3.2"
authors = ["figsoda <[email protected]>"]
edition = "2021"
description = "Minimal mpd terminal client that aims to be simple yet highly configurable"
readme = "README.md"
homepage = "https://github.com/figsoda/mmtc"
repository = "https://github.com/figsoda/mmtc"
license = "MPL-2.0"
keywords = ["cli", "mpd", "music", "terminal", "tui"]
categories = ["command-line-utilities"]
[dependencies]
anyhow = "1.0.80"
async-io = "2.3.1"
async-net = "2.0.0"
crossbeam-queue = "0.3.11"
crossterm = "0.27.0"
dirs = "5.0.1"
expand = "0.3.0"
futures-lite = "2.2.0"
ron = "0.8.1"
secular = { version = "1.0.1", features = ["normalization"] }
serde = { version = "1.0.196", features = ["derive"] }
[dependencies.clap]
version = "4.4.12"
features = ["cargo", "derive", "unicode", "wrap_help"]
[dependencies.ratatui]
version = "0.23.0"
default-features = false
features = ["crossterm", "serde"]
[build-dependencies]
clap = { version = "4.4.12", features = ["derive"] }
clap_complete = "4.5.1"
clap_mangen = "0.2.19"
[profile.release]
lto = true
panic = "abort"
codegen-units = 1