mmtc/Cargo.toml

44 lines
1 KiB
TOML
Raw Normal View History

2020-10-21 12:53:01 -04:00
[package]
name = "mmtc"
2022-12-05 10:19:36 -05:00
version = "0.3.1"
2020-10-21 12:53:01 -04:00
authors = ["figsoda <figsoda@pm.me>"]
2021-12-07 11:48:42 -05:00
edition = "2021"
2020-11-04 17:51:46 -05:00
description = "Minimal mpd terminal client that aims to be simple yet highly configurable"
2020-11-10 18:57:20 -05:00
readme = "README.md"
2020-10-21 12:53:01 -04:00
homepage = "https://github.com/figsoda/mmtc"
repository = "https://github.com/figsoda/mmtc"
2020-11-10 18:57:20 -05:00
license = "MPL-2.0"
2020-11-07 11:24:02 -05:00
keywords = ["cli", "mpd", "music", "terminal", "tui"]
2020-11-02 19:40:29 -05:00
categories = ["command-line-utilities"]
2020-10-21 12:53:01 -04:00
[dependencies]
anyhow = "1.0.68"
async-io = "1.12.0"
async-net = "1.7.0"
crossbeam-queue = "0.3.8"
2022-08-12 09:50:17 +08:00
crossterm = "0.25.0"
2021-09-17 14:50:37 -04:00
dirs = "4.0.0"
expand = "0.2.1"
2021-06-03 15:15:51 -04:00
futures-lite = "1.12.0"
ron = "0.8.0"
serde = { version = "1.0.152", features = ["derive"] }
2020-10-28 22:36:26 -04:00
2022-10-27 12:12:28 -04:00
[dependencies.clap]
version = "4.1.3"
2022-10-27 12:12:28 -04:00
features = ["cargo", "derive", "unicode", "wrap_help"]
[dependencies.tui]
version = "0.19.0"
default-features = false
features = ["crossterm", "serde"]
2021-02-17 14:16:54 -05:00
[build-dependencies]
clap = { version = "4.1.3", features = ["derive"] }
clap_complete = "4.1.1"
clap_mangen = "0.2.7"
2021-02-17 14:16:54 -05:00
2020-10-21 12:53:01 -04:00
[profile.release]
lto = true
2020-11-06 22:34:51 -05:00
panic = "abort"
2020-11-06 22:36:14 -05:00
codegen-units = 1