-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 999 Bytes
/
Cargo.toml
File metadata and controls
38 lines (35 loc) · 999 Bytes
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
[package]
name = "rustmapv3"
version = "0.2.0"
edition = "2021"
authors = ["RustMapV3 Contributors"]
description = "Ultra-fast TCP port discovery engine with Nmap orchestration"
keywords = ["network", "security", "port-scanner", "nmap", "cli"]
categories = ["command-line-utilities", "network-programming"]
license = "MIT"
repository = "https://github.com/Wael-Rd/RustMapV3"
readme = "README.md"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
tokio = { version = "1.38", features = ["full"] }
anyhow = "1.0"
ipnetwork = "0.20"
trust-dns-resolver = "0.23"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
futures = "0.3"
tracing = "0.1"
tracing-subscriber = "0.3"
chrono = { version = "0.4", features = ["serde"] }
once_cell = "1.19"
socket2 = { version = "0.5", features = ["all"] }
[[bin]]
name = "RustMapV3"
path = "src/bin/RustMapV3.rs"
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
strip = "debuginfo"
panic = "abort"