-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
39 lines (36 loc) · 904 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
[package]
name = "blk-archive"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
atty = "0.2"
blake2 = "0.10"
byteorder = "1.4"
chrono = "0.4"
clap = { version = "3.1.0", features = ["cargo"] }
devicemapper = { git = "https://github.com/stratis-storage/devicemapper-rs", branch = "master" }
gearhash = "0.1.3"
generic-array = "0.14"
serde_json = "1.0.96"
libc = "0.2"
lru = "0.10.1"
nix = "0.24.1"
nom = "7.1"
num_enum = "0.5.6"
rand = "0.8"
rand_chacha = "0.3"
roaring = "0.9"
serde = "1.0.136"
serde_derive = "1.0.136"
size-display = "0.1.4"
thinp = { git = "https://github.com/jthornber/thin-provisioning-tools.git", branch = "main" }
# thinp = { path = "../thinp-for-dm-archive/" }
threadpool = "1.0"
toml = "0.5.8"
udev = "0.7"
walkdir = "2"
zstd = "0.11"
[profile.release]
debug = 1