forked from kongbytes/arp-scan-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (31 loc) · 961 Bytes
/
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
[package]
name = "arp-scan"
description = "A minimalistic ARP scan tool"
license = "AGPL-3.0-or-later"
version = "0.13.1"
authors = ["Saluki"]
edition = "2021"
readme = "README.md"
homepage = "https://github.com/Saluki/arp-scan-rs"
repository = "https://github.com/Saluki/arp-scan-rs"
keywords = ["arp", "scan", "network", "security"]
categories = ["command-line-utilities"]
exclude = ["/.semaphore", "/data", "/release.sh", ".*"]
[dependencies]
# CLI & utilities
clap = { version = "3.2", default-features = false, features = ["std", "suggestions", "color"] }
ansi_term = "0.12"
rand = "0.8"
ctrlc = "3.2"
# Network
pnet = "0.31"
pnet_datalink = "0.31"
ipnetwork = "0.19"
dns-lookup = "1.0"
# Parsing & exports
csv = "1.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.8.4"
[target.'cfg(windows)'.dependencies]
windows = { version = "*", features = ["Win32_System_Threading", "Win32_Foundation", "Win32_Security"]}