mirror of
https://github.com/figsoda/mmtc
synced 2024-11-15 03:57:07 +00:00
228ffae13d
Bump clap_mangen from 0.2.6 to 0.2.7
43 lines
1 KiB
TOML
43 lines
1 KiB
TOML
[package]
|
|
name = "mmtc"
|
|
version = "0.3.1"
|
|
authors = ["figsoda <figsoda@pm.me>"]
|
|
edition = "2021"
|
|
description = "Minimal mpd terminal client that aims to be simple yet highly configurable"
|
|
readme = "README.md"
|
|
homepage = "https://github.com/figsoda/mmtc"
|
|
repository = "https://github.com/figsoda/mmtc"
|
|
license = "MPL-2.0"
|
|
keywords = ["cli", "mpd", "music", "terminal", "tui"]
|
|
categories = ["command-line-utilities"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.68"
|
|
async-io = "1.12.0"
|
|
async-net = "1.7.0"
|
|
crossbeam-queue = "0.3.8"
|
|
crossterm = "0.25.0"
|
|
dirs = "4.0.0"
|
|
expand = "0.2.1"
|
|
futures-lite = "1.12.0"
|
|
ron = "0.8.0"
|
|
serde = { version = "1.0.152", features = ["derive"] }
|
|
|
|
[dependencies.clap]
|
|
version = "4.1.1"
|
|
features = ["cargo", "derive", "unicode", "wrap_help"]
|
|
|
|
[dependencies.tui]
|
|
version = "0.19.0"
|
|
default-features = false
|
|
features = ["crossterm", "serde"]
|
|
|
|
[build-dependencies]
|
|
clap = { version = "4.1.1", features = ["derive"] }
|
|
clap_complete = "4.0.7"
|
|
clap_mangen = "0.2.7"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
panic = "abort"
|
|
codegen-units = 1
|