-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathCargo.toml
57 lines (49 loc) · 1.14 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
[package]
name = "cracken"
version = "1.0.1"
authors = ["shmuelamar"]
edition = "2021"
build = "build.rs"
description = "a fast password wordlist generator, Smartlist creation and password hybrid-mask analysis tool"
homepage = "https://github.com/shmuelamar/cracken"
repository = "https://github.com/shmuelamar/cracken"
keywords = ["password", "crack", "cracking", "wordlist-generator", "security"]
categories = ["command-line-utilities", "cryptography"]
readme = "README.md"
license = "MIT"
include = [
"**/*.rs",
"Cargo.toml",
]
[lib]
name = "cracken"
path = "src/lib.rs"
[[bin]]
name = "cracken"
path = "src/main.rs"
[[bench]]
name = "bench"
harness = false
[profile.release]
lto = true
opt-level = 3
codegen-units = 1
[profile.bench]
lto = true
opt-level = 3
codegen-units = 1
[dependencies]
aho-corasick = "~0.7"
clap = { version = "~2.33.0", features = [ "suggestions", "color" , "wrap_help"] }
itertools = "~0.10"
lazy_static = "~1.4.0"
num-bigint = "~0.4.0"
ordered-float = "~2.0.0"
pathfinding = "~0.5.0"
regex = "~1"
simple-error = "~0.2"
tokenizers = "~0.11.0"
[dev-dependencies]
criterion = "~0.3.5"
[build-dependencies]
built = "~0.4.4"