Files
pacdef_rust/Cargo.toml
T
Dr. Matthias Ratajczak dd4670094d upgrade to clap v4 again
i can't really live with the outdated library
monochrome output is the lesser evil
2023-01-30 15:57:19 +01:00

27 lines
371 B
TOML

[package]
name = "pacdef"
version = "0.1.0"
edition = "2021"
[dependencies]
alpm = "*"
anyhow = "*"
clap = "*"
path-absolutize = "*"
regex = "*"
serde_json = "*"
serde_yaml = "*"
serde_derive = "*"
serde = "*"
pacdef_macro = {path = "pacdef_macro/"}
termios = "*"
[profile.release]
lto = "off"
opt-level = "z"
strip = true
[[bin]]
name = "pacdef"
path = "src/main.rs"