mirror of
https://github.com/figsoda/mmtc
synced 2024-11-13 03:17:07 +00:00
91237a7833
Bumps [futures-lite](https://github.com/smol-rs/futures-lite) from 1.13.0 to 2.0.0. - [Release notes](https://github.com/smol-rs/futures-lite/releases) - [Changelog](https://github.com/smol-rs/futures-lite/blob/master/CHANGELOG.md) - [Commits](https://github.com/smol-rs/futures-lite/compare/v1.13.0...v2.0.0) --- updated-dependencies: - dependency-name: futures-lite dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
44 lines
1.1 KiB
TOML
44 lines
1.1 KiB
TOML
[package]
|
|
name = "mmtc"
|
|
version = "0.3.2"
|
|
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.75"
|
|
async-io = "2.0.0"
|
|
async-net = "1.8.0"
|
|
crossbeam-queue = "0.3.8"
|
|
crossterm = "0.27.0"
|
|
dirs = "5.0.1"
|
|
expand = "0.3.0"
|
|
futures-lite = "2.0.0"
|
|
ron = "0.8.1"
|
|
secular = { version = "1.0.1", features = ["normalization"] }
|
|
serde = { version = "1.0.190", features = ["derive"] }
|
|
|
|
[dependencies.clap]
|
|
version = "4.4.7"
|
|
features = ["cargo", "derive", "unicode", "wrap_help"]
|
|
|
|
[dependencies.ratatui]
|
|
version = "0.23.0"
|
|
default-features = false
|
|
features = ["crossterm", "serde"]
|
|
|
|
[build-dependencies]
|
|
clap = { version = "4.4.7", features = ["derive"] }
|
|
clap_complete = "4.4.4"
|
|
clap_mangen = "0.2.15"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
panic = "abort"
|
|
codegen-units = 1
|