mirror of
https://github.com/figsoda/mmtc
synced 2024-11-15 12:07:07 +00:00
c840721bd2
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.141 to 1.0.142. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.141...v1.0.142) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
39 lines
995 B
TOML
39 lines
995 B
TOML
[package]
|
|
name = "mmtc"
|
|
version = "0.2.14"
|
|
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.60"
|
|
async-io = "1.7.0"
|
|
async-net = "1.6.1"
|
|
clap = { version = "3.2.16", features = ["cargo", "derive", "unicode"] }
|
|
crossbeam-queue = "0.3.6"
|
|
crossterm = "0.24.0"
|
|
dirs = "4.0.0"
|
|
expand = "0.2.0"
|
|
futures-lite = "1.12.0"
|
|
ron = "0.7.1"
|
|
serde = { version = "1.0.142", features = ["derive"] }
|
|
|
|
[dependencies.tui]
|
|
version = "0.18.0"
|
|
default-features = false
|
|
features = ["crossterm", "serde"]
|
|
|
|
[build-dependencies]
|
|
clap = { version = "3.2.16", features = ["derive"] }
|
|
clap_complete = "3.2.3"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
panic = "abort"
|
|
codegen-units = 1
|