Files
empeve/Cargo.toml
2025-12-15 00:31:45 +01:00

38 lines
749 B
TOML

[package]
name = "mpv-mgr"
version = "0.1.0"
edition = "2021"
description = "Package manager for mpv scripts"
authors = ["cnachtigall"]
license = "MIT"
repository = "https://github.com/cnachtigall/mpv-mgr"
keywords = ["mpv", "scripts", "package-manager", "cli"]
categories = ["command-line-utilities", "multimedia"]
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
toml = "0.8"
git2 = "0.19"
dirs = "5"
thiserror = "1"
walkdir = "2"
colored = "2"
indicatif = "0.17"
[features]
default = []
tui = ["ratatui", "crossterm"]
[dependencies.ratatui]
version = "0.28"
optional = true
[dependencies.crossterm]
version = "0.28"
optional = true
[[bin]]
name = "mpv-mgr"
path = "src/main.rs"