-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Cargo.toml
53 lines (44 loc) · 1.7 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
[package]
name = "unimap"
version = "0.6.0"
authors = ["Eduard Tolosa <[email protected]>"]
edition = "2018"
description = "Scan only once by IP address and reduce scan times with Nmap for large amounts of data."
repository = "https://github.com/edu4rdshl/unimap"
license = "GPL-3.0-or-later"
keywords = ["nmap", "scanning", "ip-scan", "scanner", "open-ports"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
trust-dns-resolver = "0.20.4"
rayon = "1.7.0"
log = { version = "0.4.20", features = ["std"] }
colored = { version = "2.0.4", optional = true }
rand = "0.8.5"
lazy_static = "1.4.0"
serde = { version = "1.0.186", features = ["derive"] }
serde_derive = "1.0.186"
prettytable-rs = "0.8.0"
serde-xml-rs = "0.5.1"
chrono = "0.4.26"
clap = { version = "2.34.0", features = ["yaml"] }
config = { version = "0.11.0", features = ["yaml", "json", "toml", "hjson", "ini"] }
failure = "0.1.8"
# https://github.com/bluejekyll/trust-dns/pull/1632
[patch.crates-io]
trust-dns-resolver = { git = "https://github.com/Findomain/trust-dns", package = "trust-dns-resolver", branch = "custombranch" }
[target.arm-unknown-linux-gnueabihf.dependencies]
openssl = { version = "0.10.56", features = ["vendored"] }
[target.aarch64-unknown-linux-gnu.dependencies]
openssl = { version = "0.10.56", features = ["vendored"] }
[target.armv7-unknown-linux-gnueabihf.dependencies]
openssl = { version = "0.10.56", features = ["vendored"] }
[target.'cfg(windows)'.dependencies]
atty = "0.2.14"
winapi = { version = "0.3.9", features = ["handleapi", "winbase"] }
[profile.release]
lto = true
codegen-units = 1
panic = 'abort'
incremental = false
opt-level = "s"