-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (46 loc) · 1.27 KB
/
Cargo.toml
File metadata and controls
51 lines (46 loc) · 1.27 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
[package]
authors.workspace = true
description = "Library and command line interface for the parsing and writing of ALPM-MTREE files"
edition.workspace = true
homepage.workspace = true
keywords.workspace = true
license.workspace = true
name = "alpm-mtree"
readme = "README.md"
repository.workspace = true
rust-version.workspace = true
version = "0.3.3"
[[bin]]
name = "alpm-mtree"
path = "src/main.rs"
required-features = ["cli"]
[features]
_winnow-debug = ["winnow/debug"]
cli = ["dep:clap", "dep:serde_json"]
creation = ["dep:log", "dep:which"]
default = ["creation"]
[dependencies]
alpm-common.workspace = true
alpm-parsers.workspace = true
alpm-types.workspace = true
clap = { workspace = true, optional = true }
flate2.workspace = true
fluent-i18n.workspace = true
log = { workspace = true, optional = true }
serde.workspace = true
serde_json = { workspace = true, optional = true }
strum.workspace = true
thiserror.workspace = true
which = { workspace = true, optional = true }
winnow.workspace = true
[dev-dependencies]
assert_cmd.workspace = true
filetime.workspace = true
insta = { features = ["filters"], workspace = true }
rstest.workspace = true
serde_json.workspace = true
simplelog.workspace = true
tempfile.workspace = true
testresult.workspace = true
[lints]
workspace = true