mmtc/Cargo.toml

45 lines
1.1 KiB
TOML
Raw Normal View History

2020-10-21 16:53:01 +00:00
[package]
name = "mmtc"
2023-02-16 01:15:55 +00:00
version = "0.3.2"
2020-10-21 16:53:01 +00:00
authors = ["figsoda <figsoda@pm.me>"]
2021-12-07 16:48:42 +00:00
edition = "2021"
2020-11-04 22:51:46 +00:00
description = "Minimal mpd terminal client that aims to be simple yet highly configurable"
2020-11-10 23:57:20 +00:00
readme = "README.md"
2020-10-21 16:53:01 +00:00
homepage = "https://github.com/figsoda/mmtc"
repository = "https://github.com/figsoda/mmtc"
2020-11-10 23:57:20 +00:00
license = "MPL-2.0"
2020-11-07 16:24:02 +00:00
keywords = ["cli", "mpd", "music", "terminal", "tui"]
2020-11-03 00:40:29 +00:00
categories = ["command-line-utilities"]
2020-10-21 16:53:01 +00:00
[dependencies]
anyhow = "1.0.75"
async-io = "1.13.0"
async-net = "1.7.0"
crossbeam-queue = "0.3.8"
crossterm = "0.27.0"
dirs = "5.0.1"
expand = "0.3.0"
futures-lite = "1.13.0"
ron = "0.8.1"
2023-01-31 19:15:51 +00:00
secular = { version = "1.0.1", features = ["normalization"] }
serde = { version = "1.0.183", features = ["derive"] }
2020-10-29 02:36:26 +00:00
2022-10-27 16:12:28 +00:00
[dependencies.clap]
version = "4.3.22"
2022-10-27 16:12:28 +00:00
features = ["cargo", "derive", "unicode", "wrap_help"]
2023-05-02 23:57:04 +00:00
[dependencies.ratatui]
version = "0.22.0"
default-features = false
features = ["crossterm", "serde"]
2021-02-17 19:16:54 +00:00
[build-dependencies]
clap = { version = "4.3.22", features = ["derive"] }
clap_complete = "4.3.2"
clap_mangen = "0.2.12"
2021-02-17 19:16:54 +00:00
2020-10-21 16:53:01 +00:00
[profile.release]
lto = true
2020-11-07 03:34:51 +00:00
panic = "abort"
2020-11-07 03:36:14 +00:00
codegen-units = 1