-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (71 loc) · 1.99 KB
/
Copy pathCargo.toml
File metadata and controls
81 lines (71 loc) · 1.99 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
[package]
name = "brutifi"
version = "2.0.0"
edition = "2021"
description = "Cute and powerful WiFi security testing tool with real-time feedback"
license = "MIT"
repository = "https://github.com/maxgfr/bruteforce-wifi"
authors = ["maxgfr"]
[[bin]]
name = "brutifi"
path = "src/main.rs"
[dependencies]
tokio = { version = "1.35", features = ["full"] }
anyhow = "1.0"
rayon = "1.8"
num_cpus = "1.16"
parking_lot = "0.12"
regex = "1.10"
# Cryptography for WPA/WPA2 handshake cracking
# Using pure software implementations for maximum compatibility (no SIMD that can crash)
hmac = { version = "0.12", default-features = false }
sha1 = { version = "0.10", default-features = false, features = ["force-soft"] }
sha2 = { version = "0.10", default-features = false, features = ["force-soft"] }
md-5 = { version = "0.10", default-features = false, features = ["force-soft"] }
aes = { version = "0.8", default-features = false }
cmac = { version = "0.7", default-features = false }
digest = { version = "0.10", default-features = false }
# PBKDF2 with software-only SHA
pbkdf2 = { version = "0.12", default-features = false, features = ["hmac"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# PCAP file parsing
ctrlc = "3.5.1"
pcap = "2.4.0"
# System calls for macOS
libc = "0.2"
# GUI dependencies (Iced)
iced = { version = "0.13.1", features = ["tokio", "advanced", "image"] }
rfd = "0.15"
image = "0.24"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
strip = true
panic = "abort"
overflow-checks = false
incremental = false
debug = false
debug-assertions = false
rpath = false
# Maximum performance profile for cracking
[profile.release-crack]
inherits = "release"
opt-level = 3
lto = "fat"
codegen-units = 1
strip = true
panic = "abort"
# Profile for development with some optimizations
[profile.dev]
opt-level = 1
lto = false
codegen-units = 256
incremental = true
debug = true
# Profile for benchmarking with debug symbols
[profile.bench]
inherits = "release"
debug = true
strip = false