-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (40 loc) · 966 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
40
41
42
43
44
45
46
47
48
49
[package]
name = "diskutil"
version = "0.1.0"
authors = ["Artur Kowalski <[email protected]>"]
edition = "2018"
[[bin]]
name = "vhdinfo"
path = "src/bin/vhdinfo.rs"
[[bin]]
name = "vhd2bin"
path = "src/bin/vhd2bin.rs"
[[bin]]
name = "mkvhd"
path = "src/bin/mkvhd.rs"
[[bin]]
name = "bin2vhd"
path = "src/bin/bin2vhd.rs"
[[bin]]
name = "fat"
path = "src/bin/fat.rs"
[features]
default = ["device"]
device = ["winapi"]
[dependencies]
anyhow = "1"
thiserror = "1"
bitflags = "1"
byteorder = "1"
chrono = "0.4"
clap = { version = "3", features = ["derive"] }
fern = { version = "0.6", features = ["colored"] }
log = "0.4"
crc = "1"
better-panic = "0.2"
fatfs = { git = "https://github.com/rafalh/rust-fatfs", rev = "1415756c41a3e1b2e6596b283d4c55c82a9378b4", features = ["std"] }
uuid_macros = { path = "uuid_macros" }
winapi = { version = "0.3", optional = true, features = ["ioapiset", "winioctl"] }
[dependencies.uuid]
version = "0.8"
features = ["v4"]