-
Notifications
You must be signed in to change notification settings - Fork 34
/
Cargo.toml
44 lines (37 loc) · 1.06 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
[package]
name = "zip-password-finder"
version = "0.9.2"
description = "Find the password of protected ZIP files"
authors = ["Arnaud Gourlay <[email protected]>"]
repository = "https://github.com/agourlay/zip-password-finder"
license = "Apache-2.0"
readme = "README.md"
categories = ["command-line-interface"]
keywords = ["zip", "archive", "password", "crack", "brute-force"]
edition = "2021"
[dependencies]
zip = "2.2.0"
pbkdf2 = "0.12.2" # parallel version did not help the performance
hmac = { version = "0.12.1", features = ["reset"] }
sha1 = "0.10.6"
clap = { version = "4.5.20", features = ["cargo"] }
indicatif = "0.17.8"
thiserror = "2.0.0"
num_cpus = "1.16.0"
ahash = "0.8.11"
humantime = "2.1.0"
[profile.release]
lto = "fat"
codegen-units = 1
[profile.test]
opt-level = 3 # needed for fast execution
[dev-dependencies]
criterion = { version = "0.5.1", default-features = false, features = ["cargo_bench_support", "html_reports"] }
[profile.bench]
debug = true
[[bench]]
name = "password_generator"
harness = false
[[bench]]
name = "password_reader"
harness = false