-
Notifications
You must be signed in to change notification settings - Fork 73
/
Cargo.toml
66 lines (61 loc) · 1.3 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "thinp"
version = "1.1.0"
authors = ["Joe Thornber <ejt@redhat.com>"]
edition = "2021"
license = "GPL-3.0-only"
[dependencies]
atty = "0.2"
anyhow = "1.0"
base64 = "0.22"
byteorder = "1.4"
clap = { version = "4.5", default-features = false, features = [
"std",
"help",
"usage",
"error-context",
"suggestions",
] }
crc32c = "0.6"
data-encoding = "2.5"
devicemapper = "0.34.3"
exitcode = "1.1.2"
fixedbitset = "0.4"
flate2 = "1.0"
iovec = "0.1"
indicatif = "0.17"
libc = "0.2"
nom = "7.1"
num_cpus = "1.16"
num-derive = "0.4"
num-traits = "0.2"
quick-xml = "0.36"
rand = "0.8"
rangemap = "1.5"
roaring = "0.10"
rio = { git = "https://github.com/jthornber/rio", branch = "master", optional = true }
safemem = "0.3"
threadpool = "1.8"
thiserror = "1.0"
tui = { version = "0.19", default-features = false, features = [
"termion",
], optional = true }
termion = { version = "1.5", optional = true }
udev = "0.7"
[dev-dependencies]
duct = "0.13"
mockall = "0.13"
quickcheck = "1.0"
quickcheck_macros = "1.0"
rand = { version = "0.8", features = ["small_rng"] }
tempfile = "3.6"
thinp = { path = ".", features = ["devtools"] }
[features]
devtools = ["tui", "termion"]
io_uring = ["dep:rio"]
no_cleanup = []
[profile.release]
debug = true
[[bin]]
name = "pdata_tools_dev"
required-features = ["devtools"]