-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
34 lines (28 loc) · 948 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "paccat"
version = "1.3.1"
authors = ["morganamilo <morganamilo@archlinux.org>"]
edition = "2021"
description = "Print pacman package files"
repository = "http://github.com/Morganamilo/paccat"
license = "GPL-3.0"
keywords = ["archlinux", "arch", "alpm", "pacman"]
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
[dependencies]
alpm = "4.0.2"
alpm-utils = { version = "4.0.1", features = ["conf"] }
pacmanconf = "3.0.0"
anyhow = "1.0.95"
compress-tools = "0.15.1"
nix = { version = "0.29.0", features = ["fs", "user"] }
regex = "1.11.1"
clap = { version = "4.5.23", default-features = false, features = ["std", "cargo", "derive", "help"]}
[build-dependencies]
clap = { version = "4.5.23", default-features = false, features = ["std", "cargo", "derive", "help"]}
clap_complete = "4.5.40"
[profile.release]
codegen-units = 1
lto = true
[features]
git = ["alpm/git", "alpm-utils/git"]
generate = ["alpm/generate"]