-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (57 loc) · 1.48 KB
/
Copy pathCargo.toml
File metadata and controls
62 lines (57 loc) · 1.48 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
[package]
name = "zerodisk"
version = "0.3.0"
edition = "2024"
rust-version = "1.85"
description = "Enterprise-grade secure disk sanitization suite"
authors = ["Cuma KURT <cumakurt@gmail.com>"]
license = "AGPL-3.0-only"
readme = "README.md"
repository = "https://github.com/cumakurt/ZeroDisk"
homepage = "https://github.com/cumakurt/ZeroDisk"
documentation = "https://github.com/cumakurt/ZeroDisk#readme"
keywords = ["disk", "wipe", "forensics", "security", "linux"]
categories = ["command-line-utilities", "filesystem"]
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
crossterm = "0.28"
csv = "1"
ed25519-dalek = "2"
fern = "0.7"
syslog = "6"
log = "0.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
toml = "0.8"
ureq = "2.12.1"
indicatif = "0.18.4"
[lints.rust]
unsafe_code = "forbid"
rust_2018_idioms = { level = "warn", priority = -1 }
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
# Pragmatic opt-outs for an enterprise CLI binary:
module_name_repetitions = "allow"
too_many_lines = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
cast_possible_truncation = "allow"
cast_sign_loss = "allow"
cast_precision_loss = "allow"
cast_lossless = "allow"
similar_names = "allow"
struct_excessive_bools = "allow"
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
strip = "symbols"
panic = "abort"
debug = false
overflow-checks = false
[profile.dev]
opt-level = 0
debug = true