mmtc/Cargo.toml

39 lines
894 B
TOML
Raw Normal View History

2020-10-21 12:53:01 -04:00
cargo-features = ["strip"]
[package]
name = "mmtc"
2020-11-28 20:01:16 -05:00
version = "0.2.6"
2020-10-21 12:53:01 -04:00
authors = ["figsoda <figsoda@pm.me>"]
edition = "2018"
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]
2020-12-06 11:46:28 -05:00
anyhow = "1.0.35"
2020-11-30 17:56:40 -05:00
async-io = "1.3.1"
async-net = "1.5.0"
2020-11-25 21:04:59 -05:00
crossbeam-queue = "0.3.1"
2020-10-30 12:20:37 -04:00
crossterm = "0.18.2"
dirs-next = "2.0.0"
2020-11-06 15:35:52 -05:00
expand = "0.2.0"
futures-lite = "1.11.2"
2020-10-30 12:20:37 -04:00
ron = "0.6.2"
2020-12-06 11:46:28 -05:00
serde = { version = "1.0.118", features = ["derive"] }
2020-11-30 17:56:40 -05:00
structopt = "0.3.21"
2020-10-28 22:36:26 -04:00
[dependencies.tui]
2020-11-14 16:33:18 -05:00
version = "0.13.0"
default-features = false
features = ["crossterm", "serde"]
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
2020-10-21 12:53:01 -04:00
strip = "symbols"