mmtc/Cargo.toml

40 lines
920 B
TOML
Raw Normal View History

2020-10-21 16:53:01 +00:00
[package]
name = "mmtc"
2021-11-08 19:03:17 +00:00
version = "0.2.14"
2020-10-21 16:53:01 +00:00
authors = ["figsoda <figsoda@pm.me>"]
2021-12-07 16:48:42 +00:00
edition = "2021"
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]
anyhow = "1.0.51"
2021-07-01 02:39:45 +00:00
async-io = "1.6.0"
async-net = "1.6.1"
2021-10-18 12:29:45 +00:00
clap = "3.0.0-beta.5"
crossbeam-queue = "0.3.2"
crossterm = "0.22.1"
2021-09-17 18:50:37 +00:00
dirs = "4.0.0"
2020-11-06 20:35:52 +00:00
expand = "0.2.0"
2021-06-03 19:15:51 +00:00
futures-lite = "1.12.0"
ron = "0.7.0"
serde = { version = "1.0.131", features = ["derive"] }
2020-10-29 02:36:26 +00:00
[dependencies.tui]
2021-08-01 22:44:07 +00:00
version = "0.16.0"
default-features = false
features = ["crossterm", "serde"]
2021-02-17 19:16:54 +00:00
[build-dependencies]
2021-10-18 12:29:45 +00:00
clap = "3.0.0-beta.5"
clap_generate = "3.0.0-beta.5"
2021-02-17 19:16:54 +00:00
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