2020-10-21 16:53:01 +00:00
|
|
|
cargo-features = ["strip"]
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "mmtc"
|
2020-11-13 23:49:17 +00:00
|
|
|
version = "0.2.3"
|
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]
|
2020-11-03 16:48:06 +00:00
|
|
|
anyhow = "1.0.34"
|
2020-10-30 16:20:37 +00:00
|
|
|
crossterm = "0.18.2"
|
2020-11-05 17:10:07 +00:00
|
|
|
dirs-next = "2.0.0"
|
2020-11-06 20:35:52 +00:00
|
|
|
expand = "0.2.0"
|
2020-10-30 16:20:37 +00:00
|
|
|
ron = "0.6.2"
|
|
|
|
serde = { version = "1.0.117", features = ["derive"] }
|
2020-11-02 17:14:54 +00:00
|
|
|
structopt = "0.3.20"
|
2020-10-29 02:36:26 +00:00
|
|
|
|
|
|
|
[dependencies.tokio]
|
2020-11-03 16:48:06 +00:00
|
|
|
version = "0.3.3"
|
2020-10-29 02:36:26 +00:00
|
|
|
features = ["io-util", "macros", "net", "rt-multi-thread", "sync", "time"]
|
2020-10-21 16:53:01 +00:00
|
|
|
|
2020-10-31 22:06:10 +00:00
|
|
|
[dependencies.tui]
|
2020-11-14 21:33:18 +00:00
|
|
|
version = "0.13.0"
|
2020-10-31 22:06:10 +00:00
|
|
|
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"
|