-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
120 lines (99 loc) · 2.19 KB
/
Copy pathCargo.toml
File metadata and controls
120 lines (99 loc) · 2.19 KB
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
111
112
113
114
115
116
117
118
119
120
[workspace]
members = [
"crates/drivewipe-core",
"crates/drivewipe-cli",
"crates/drivewipe-tui",
"crates/drivewipe-gui",
"crates/drivewipe-live",
"crates/xtask",
]
resolver = "2"
[workspace.package]
edition = "2024"
rust-version = "1.94"
authors = ["DriveWipe Contributors"]
license-file = "LICENSE.md"
repository = "https://github.com/KodyDennon/DriveWipe"
description = "Cross-platform secure data sanitization tool"
[workspace.dependencies]
# Error handling
thiserror = "2.0"
anyhow = "1"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "1.0"
# CLI
clap = { version = "4.5", features = ["derive", "env", "wrap_help"] }
dialoguer = "0.12"
indicatif = "0.18"
console = "0.16"
# TUI
ratatui = "0.30"
crossterm = "0.29"
# Concurrency / channels
crossbeam-channel = "0.5"
# Crypto
aes = "0.8"
ctr = "0.9"
cipher = "0.4"
rand = "0.10"
zeroize = { version = "1", features = ["derive"] }
argon2 = "0.5"
# Hashing
sha2 = "0.10"
blake3 = "1"
hmac = "0.12"
# Data formats
regex = "1"
byteorder = "1"
crc32fast = "1"
bitflags = "2"
# Compression
flate2 = "1"
zstd = "0.13"
# Desktop notifications
notify-rust = "4"
# GUI
iced = "0.14"
# Platform - Unix
nix = { version = "0.31", features = ["fs", "ioctl"] }
libc = "0.2"
# Platform - Windows
windows = { version = "0.62", features = [
"Win32_Foundation",
"Win32_Storage_FileSystem",
"Win32_System_Ioctl",
"Win32_System_IO",
"Win32_System_Threading",
"Win32_Devices_DeviceAndDriverInstallation",
"Win32_Security",
"Win32_Storage_IscsiDisc",
"Win32_System_SystemServices",
"Win32_System_Power",
] }
# PDF
printpdf = { version = "0.12", default-features = false }
# Utilities
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
ctrlc = { version = "3", features = ["termination"] }
log = "0.4"
env_logger = "0.11"
dirs = "6"
hostname = "0.4"
# Async runtime
tokio = { version = "1.50.0", features = ["full"] }
async-trait = "0.1.89"
# Encoding
hex = "0.4.3"
# Testing
assert_cmd = "2"
predicates = "3"
tempfile = "3"
[profile.release]
lto = "thin"
strip = true
opt-level = 3
[profile.release.package.drivewipe-core]
opt-level = 3