forked from Ragnt/AngryOxide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
69 lines (65 loc) · 1.55 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
58
59
60
61
62
63
64
65
66
67
68
69
[workspace]
members = ["libs/libwifi", "libs/libwifi_macros", "libs/pcap-file"]
[workspace.package]
version = "0.8.6"
authors = ["Ryan Butler"]
description = "80211 Attack Tool"
license = "GPL"
edition = "2021"
rust-version = "1.70"
[package]
name = "angry_oxide"
version.workspace = true
authors.workspace = true
description.workspace = true
edition.workspace = true
license.workspace = true
[[bin]]
name = "angryoxide"
path = "src/main.rs"
[dependencies]
libwifi = { version = "0.3.1", path = "libs/libwifi" }
pcap-file = { version = "2.0.0", path = "libs/pcap-file" }
nl80211-ng = ">=0.2.9"
byteorder = "1.5.0"
libc = "0.2.149"
nix = { version = "0.27.1", features = [
"socket",
"ioctl",
"net",
"fs",
"user",
] }
radiotap = "1.3.0"
anyhow = "1.0.75"
neli = "0.6.4"
neli-proc-macros = "0.1.0"
hex = "0.4.3"
rand = "0.8.5"
ctrlc = "3.4.1"
crossterm = "0.27.0"
ratatui = { version = "0.25.0", features = [
"all-widgets",
"unstable-segment-size",
] }
chrono = "0.4.31"
crc = "3.0.1"
clap = { version = "4.4.18", features = ["derive"] }
strum = "0.25.0"
strum_macros = "0.25.3"
derive_setters = "0.1.6"
gpsd_proto = "1.0.0"
itertools = "0.12.0"
geographiclib-rs = "0.2.3"
rusqlite = { version = "0.30.0", features = ["bundled"] }
uuid = { version = "1.6.1", features = ["v4"] }
crc32fast = "1.3.2"
flate2 = { version = "1.0.28", features = ["zlib"] }
tar = "0.4.40"
procfs = "0.16.0"
uname = "0.1.1"
globset = "0.4.14"
terminal-clipboard = "0.4.1"
unicode-width = "0.1.11"
stability = "0.1.1"
copypasta-ext = { version = "0.4.4", features = ["osc52"] }