forked from stratis-storage/stratisd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
110 lines (93 loc) · 2.06 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[package]
name = "libstratis"
version = "2.4.0"
authors = ["Stratis Developers <[email protected]>"]
edition = "2018"
build = "build.rs"
description = "Stratis daemon"
license-file = "LICENSE"
repository = "https://github.com/stratis-storage/stratisd/"
keywords = ["Linux", "filesystem", "storage"]
categories = ["filesystem"]
[[bin]]
name = "stratis_dumpmetadata"
required-features = ["extras"]
[[bin]]
name = "stratis-min"
path = "src/bin/stratis-min/stratis-min.rs"
required-features = ["min"]
[[bin]]
name = "stratisd-min"
path = "src/bin/stratis-min/stratisd-min.rs"
required-features = ["min"]
[[bin]]
name = "stratis-utils"
[dependencies]
base64 = "0.13.0"
byteorder = "1.2.3"
chrono = "0.4.1"
clap = "2.23.0"
crc = "1.0.0"
data-encoding = "2.3.0"
devicemapper = "0.29.0"
either = "1.5.0"
env_logger="0.8.0"
futures = "0.3.5"
itertools = "0.10.0"
lazy_static = "1.2.0"
libc = "0.2.87"
libmount = "0.1.9"
libudev = "0.2.0"
log = "0.4.8"
nix = "0.20.0"
rand = "0.8.0"
regex = "1.4.0"
semver = "0.11.0"
serde = "1.0.119"
serde_derive = "1.0.119"
serde_json = "1.0.50"
sha-1 = "0.9.0"
tempfile = "3.0.2"
termios = "0.3.0"
timerfd = "1.0.0"
[dependencies.libcryptsetup-rs]
version = "0.4.3"
features = ["mutex"]
[dependencies.tokio]
version = "1.2.0"
features = ["sync", "macros", "rt", "rt-multi-thread", "signal", "net"]
[dependencies.dbus]
version = "0.9.0"
features = ["futures"]
optional = true
[dependencies.dbus-tree]
version = "0.9.0"
optional = true
[dependencies.dbus-tokio]
version = "0.7.0"
optional = true
[dependencies.libdbus-sys]
version = "0.2.1"
optional = true
[dependencies.rpassword]
version = "5.0.0"
optional = true
[dependencies.uuid]
version = "0.8.0"
features = ["serde", "v4"]
[build-dependencies]
pkg-config = "0.3.18"
[build-dependencies.bindgen]
version = "0.57.0"
optional = true
[dev-dependencies]
error-chain = "0.12.4"
loopdev = "0.2.0"
matches = "0.1.3"
proptest = "0.10.0"
[features]
default = ["dbus_enabled"]
dbus_enabled = ["dbus", "dbus-tree", "dbus-tokio", "libdbus-sys"]
extras = []
min = ["rpassword"]
systemd_compat = ["bindgen"]