-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (38 loc) · 1020 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
35
36
37
38
39
40
41
[workspace.package]
authors = [
"Arne Beer <[email protected]>",
"David Runge <[email protected]>",
"Orhun Parmaksız <[email protected]>",
]
edition = "2021"
homepage = "https://gitlab.archlinux.org/archlinux/alpm/alpm"
keywords = ["alpm", "arch", "linux", "packaging"]
license = "Apache-2.0 OR MIT"
readme = "README.md"
repository = "https://gitlab.archlinux.org/archlinux/alpm/alpm"
[workspace]
members = [
"alpm-buildinfo",
"alpm-mtree",
"alpm-parsers",
"alpm-types",
"dev-scripts",
]
resolver = "2"
[workspace.dependencies]
alpm-parsers = { path = "./alpm-parsers" }
alpm-types = { path = "./alpm-types" }
assert_cmd = "2.0.11"
clap = { version = "4.5.19", features = ["derive", "env", "string"] }
insta = "1.40.0"
rstest = "0.24.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
strum = { version = "0.26.3", features = ["derive"] }
testresult = "0.4.1"
thiserror = "2.0.0"
winnow = "0.6"
[profile.release]
codegen-units = 1
lto = true
opt-level = "z"