-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (36 loc) · 963 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
[package]
name = "alpm-buildinfo"
description = "Library and commandline toolkit for the specification, writing and parsing of ALPM BUILDINFO files"
version = "0.1.0"
rust-version = "1.70.0"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
keywords.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true
[[bin]]
name = "alpm-buildinfo"
path = "src/main.rs"
required-features = ["cli"]
[features]
cli = ["dep:clap"]
default = ["cli"]
winnow-debug = ["alpm-parsers/winnow-debug"]
[dependencies]
alpm-parsers.workspace = true
alpm-types.workspace = true
clap = { workspace = true, optional = true }
erased-serde.workspace = true
serde.workspace = true
serde_json = "1.0.133"
serde_with = "3.11.0"
strum.workspace = true
thiserror.workspace = true
[dev-dependencies]
assert_cmd.workspace = true
insta.workspace = true
rstest.workspace = true
tempfile.workspace = true
testresult.workspace = true