-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (27 loc) · 802 Bytes
/
Cargo.toml
File metadata and controls
35 lines (27 loc) · 802 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
34
35
[package]
name = "debpkg"
description = "Library for parsing debian packages"
homepage = "https://github.com/schultetwin1/debpkg/"
repository = "https://github.com/schultetwin1/debpkg/"
version = "0.6.0"
authors = ["Matt Schulte <schultetwin1@gmail.com>"]
edition = "2018"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ar = "0.9"
bzip2 = { version = "0.5", optional = true }
flate2 = { version = "1.1", optional = true }
infer = "0.19"
log = "0.4"
indexmap = "2.9.0"
tar = "0.4"
xz2 = { version = "0.1", optional = true }
zstd = { version = "0.13", optional = true }
[dev-dependencies]
assert_matches = "1.5"
tempfile = "3.3.0"
[features]
default = ["bzip2", "gzip", "xz", "zstd"]
gzip = ["flate2"]
xz = ["xz2"]