-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 778 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 778 Bytes
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
[package]
authors.workspace = true
description = "Library for compression operations in ALPM"
edition.workspace = true
homepage.workspace = true
keywords.workspace = true
license.workspace = true
name = "alpm-compress"
readme = "README.md"
repository.workspace = true
rust-version.workspace = true
version = "0.1.3"
[dependencies]
alpm-types.workspace = true
bzip2 = "0.6.0"
flate2.workspace = true
fluent-i18n.workspace = true
liblzma = { version = "0.4.1", features = ["parallel"] }
log.workspace = true
num_cpus = "1.17.0"
tar.workspace = true
thiserror.workspace = true
zstd = { version = "0.13.3", features = ["zstdmt"] }
[dev-dependencies]
proptest.workspace = true
rstest.workspace = true
tempfile.workspace = true
testresult.workspace = true
[lints]
workspace = true