forked from pacman-repo-builder/pacman-repo-builder
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (64 loc) · 1.5 KB
/
Copy pathCargo.toml
File metadata and controls
73 lines (64 loc) · 1.5 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[package]
name = "pacman-repo-builder"
description = "Build a custom pacman repository from a collection of PKGBUILD directories"
version = "0.0.0"
edition = "2021"
readme = "README.md"
license = "GPL-3.0-only"
documentation = "https://github.com/LizardByte/pacman-repo-builder/blob/master/README.md"
repository = "https://github.com/LizardByte/pacman-repo-builder.git"
keywords = [
"pacman",
"arch",
"archlinux",
"pkgbuild",
]
categories = ["command-line-utilities"]
include = [
"/src",
"/Cargo.toml",
"/README.md",
"/LICENSE.md",
]
[workspace]
resolver = "2"
[workspace.metadata.ci]
cargo-run-bin = "1.7.4"
[workspace.metadata.bin]
cargo-deny = { version = "0.19.9", locked = true }
cargo-edit = { version = "0.13.1", bins = ["cargo-set-version"], locked = true }
cargo-tarpaulin = { version = "0.35.4", locked = true }
[lib]
name = "pacman_repo_builder"
path = "src/lib.rs"
[[bin]]
name = "build-pacman-repo"
path = "src/main.rs"
[dependencies]
argh = "^0.1.12"
alpm = "^5.0.0"
command-extra = "^1.0.0"
git2 = "^0.21.0"
hex_fmt = "^0.3.0"
hex-literal = "^1.0.0"
indexmap = "^2.2.5"
itertools = "^0.15.0"
num-bigint = "^0.5.0"
num-traits = "^0.2.19"
pacmanconf = "^3.0.0"
petgraph = "^0.8.0"
pipe-trait = "^0.4.0"
rayon = "^1.10.0"
reflink = "^0.1.3"
serde_yaml = "^0.9.34"
sha-1 = "^0.10.1"
smart-default = "^0.7.1"
[dependencies.serde]
version = "^1.0.214"
features = ["derive"]
[dev-dependencies]
fs_extra = "^1.2.0"
pretty_assertions = "^1.4.1"
tempfile = "^3.13.0"
[profile.release]
opt-level = "s"