-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
31 lines (27 loc) · 843 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
[package]
name = "block-utils"
version = "0.11.1"
authors = ["Chris Holcombe <xfactor973@gmail.com>"]
description = "Utilities to work with block devices. Formatting, getting device info, identifying type of device, etc."
edition = '2018'
# These URLs point to more information about the repository.
documentation = "https://docs.rs/block-utils"
homepage = "https://github.com/cholcombe973/block-utils"
repository = "https://github.com/cholcombe973/block-utils"
readme = "README.md"
license = "MIT"
[dev-dependencies]
nix = "0.23"
tempfile = "3"
[dependencies]
fstab = "0.4"
log = "0.4"
regex = "1.7"
shellscript = "0.3"
serde = { "version" = "1.0", features = ["derive"] }
serde_json = "1.0"
strum = { version = "0.24", features = ["derive"] }
thiserror = "1.0"
uuid = "1.3"
[target.'cfg(target_os = "linux")'.dependencies]
udev = "0.5"