mmtc/Cargo.toml

30 lines
705 B
TOML
Raw Normal View History

2020-10-21 16:53:01 +00:00
cargo-features = ["strip"]
[package]
name = "mmtc"
version = "0.1.0"
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"
[dependencies]
2020-10-29 02:36:26 +00:00
anyhow = "1.0.33"
2020-10-30 16:20:37 +00:00
crossterm = "0.18.2"
2020-10-29 02:36:26 +00:00
expand = "0.1.2"
2020-10-30 16:20:37 +00:00
ron = "0.6.2"
serde = { version = "1.0.117", features = ["derive"] }
2020-10-29 02:36:26 +00:00
tui = { version = "0.12.0", default-features = false, features = ["crossterm"] }
[dependencies.tokio]
version = "0.3.2"
features = ["io-util", "macros", "net", "rt-multi-thread", "sync", "time"]
2020-10-21 16:53:01 +00:00
[profile.release]
lto = true
codegen-units = 1
strip = "symbols"