Files
pacdef_rust/Cargo.toml
T
2023-02-02 15:39:03 +01:00

30 lines
523 B
TOML

[package]
name = "pacdef"
version = "1.0.0-beta1"
edition = "2021"
description = "declarative package manager for Arch Linux"
license = "GPLv3"
repository = "https://github.com/steven-omaha/pacdef"
[dependencies]
alpm = "*"
anyhow = "*"
clap = "*"
path-absolutize = "*"
regex = "*"
serde_json = "*"
serde_yaml = "*"
serde_derive = "*"
serde = "*"
pacdef_macro = {path = "pacdef_macro/", version = "*"}
termios = "*"
[profile.release]
lto = "off"
opt-level = "z"
strip = true
[[bin]]
name = "pacdef"
path = "src/main.rs"