35 lines
652 B
TOML
35 lines
652 B
TOML
[package]
|
|
name = "pacdef"
|
|
version = "1.0.0-beta2"
|
|
edition = "2021"
|
|
description = "declarative package manager for Arch Linux"
|
|
license = "GPLv3"
|
|
repository = "https://github.com/steven-omaha/pacdef"
|
|
|
|
[workspace]
|
|
members = ["crates/main", "crates/macros", "crates/core"]
|
|
|
|
[dependencies]
|
|
alpm = "*"
|
|
anyhow = "*"
|
|
clap = "*"
|
|
path-absolutize = "*"
|
|
regex = "*"
|
|
serde_json = "*"
|
|
serde_yaml = "*"
|
|
serde_derive = "*"
|
|
serde = "*"
|
|
termios = "*"
|
|
|
|
macros = {path = "crates/macros", version = "*"}
|
|
core = {path = "crates/core", version = "1.0.0-beta2"}
|
|
|
|
[[bin]]
|
|
name = "pacdef"
|
|
path = "crates/main/main.rs"
|
|
|
|
[profile.release]
|
|
lto = "off"
|
|
opt-level = "z"
|
|
strip = true
|