mmtc/Cargo.toml

38 lines
833 B
TOML
Raw Normal View History

2020-10-21 16:53:01 +00:00
cargo-features = ["strip"]
[package]
name = "mmtc"
2020-11-03 16:50:27 +00:00
version = "0.1.1"
2020-10-21 16:53:01 +00:00
authors = ["figsoda <figsoda@pm.me>"]
edition = "2018"
license = "MPL-2.0"
description = "Minimal mpd terminal client"
homepage = "https://github.com/figsoda/mmtc"
repository = "https://github.com/figsoda/mmtc"
readme = "README.md"
2020-11-03 00:40:29 +00:00
keywords = ["mpd", "music", "tui"]
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"
dirs = "3.0.1"
2020-11-03 16:48:06 +00:00
expand = "0.1.3"
2020-10-30 16:20:37 +00:00
ron = "0.6.2"
serde = { version = "1.0.117", features = ["derive"] }
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
[dependencies.tui]
version = "0.12.0"
default-features = false
features = ["crossterm", "serde"]
2020-10-21 16:53:01 +00:00
[profile.release]
lto = true
codegen-units = 1
strip = "symbols"