mmtc/Cargo.toml

39 lines
894 B
TOML
Raw Normal View History

2020-10-21 16:53:01 +00:00
cargo-features = ["strip"]
[package]
name = "mmtc"
2021-01-16 19:02:48 +00:00
version = "0.2.8"
2020-10-21 16:53:01 +00:00
authors = ["figsoda <figsoda@pm.me>"]
edition = "2018"
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]
2021-01-11 21:30:09 +00:00
anyhow = "1.0.38"
2020-11-30 22:56:40 +00:00
async-io = "1.3.1"
async-net = "1.5.0"
2020-11-26 02:04:59 +00:00
crossbeam-queue = "0.3.1"
2020-12-28 18:49:46 +00:00
crossterm = "0.19.0"
dirs-next = "2.0.0"
2020-11-06 20:35:52 +00:00
expand = "0.2.0"
2020-12-18 18:05:05 +00:00
futures-lite = "1.11.3"
2020-12-21 20:23:34 +00:00
ron = "0.6.4"
2021-01-11 21:30:09 +00:00
serde = { version = "1.0.119", features = ["derive"] }
2020-11-30 22:56:40 +00:00
structopt = "0.3.21"
2020-10-29 02:36:26 +00:00
[dependencies.tui]
2021-01-01 18:44:30 +00:00
version = "0.14.0"
default-features = false
features = ["crossterm", "serde"]
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
2020-10-21 16:53:01 +00:00
strip = "symbols"