-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
83 lines (73 loc) · 1.62 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
[package]
name = "lethe"
version = "0.8.3-dev"
authors = ["Konstantin Alexandroff <[email protected]>"]
description = "A secure, free, cross-platform and open-source drive wiping utility"
homepage = "https://github.com/Kostassoid/lethe"
repository = "https://github.com/Kostassoid/lethe"
categories = ["command-line-utilities"]
keywords = ["security", "command-line", "disk", "erase", "storage"]
readme = "README.md"
license = "Apache-2.0"
edition = "2018"
[badges]
travis-ci = { repository = "Kostassoid/lethe", branch = "master" }
[dependencies]
anyhow = { version = "1.0.48", features = ["backtrace"] }
thiserror = "1.0"
roaring = "0.10.1"
clap = "3.2.22"
rand = "0.8.5"
rand_chacha = "0.3.1"
indicatif = "0.17.1"
console = "0.15.1"
prettytable-rs = "^0.10"
streaming-iterator = "0.1.4"
regex = "1"
plist = "1"
serde = "1"
serde_derive = "1"
libc = "0.2"
[target.'cfg(unix)'.dependencies]
sysfs-class = "0.1.3"
nix = "0.25.0"
[target.'cfg(windows)'.dependencies]
widestring = "1.0.2"
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
features = [
"cguid",
"commapi",
"errhandlingapi",
"fileapi",
"guiddef",
"handleapi",
"ioapiset",
"minwinbase",
"minwindef",
"ntdef",
"processthreadsapi",
"securitybaseapi",
"setupapi",
"winbase",
"winerror",
"winnt",
"winioctl"
]
[target.'cfg(macos)'.dependencies]
mach = "0.3.2"
[dev-dependencies]
flate2 = "1.0"
assert_matches = "1.3"
[profile.release]
opt-level = 3
lto = "fat"
incremental = true
[profile.dev]
opt-level = 0
debug = true
[profile.test]
opt-level = 3
incremental = true
debug-assertions = true
debug = true