-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 830 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 830 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
[package]
name = "opscan"
version = "0.4.0"
edition = "2021"
authors = ["sigoden <sigoden@gmail.com>"]
description = "A open port scanner"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/sigoden/opscan"
repository = "https://github.com/sigoden/opscan"
categories = ["command-line-utilities"]
keywords = ["port", "scanner", "scan"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cidr-utils = "0.5.10"
clap = { version = "4.1.4", features = ["derive"] }
futures = "0.3.26"
indexmap = "1.9.2"
lazy_static = "1.4.0"
rlimit = "0.9.1"
tokio = { version = "1.25.0", features = ["rt-multi-thread", "rt", "sync", "time"] }
trust-dns-resolver = { version = "0.22.0", features = ["dns-over-rustls"] }
[profile.release]
lto = true
strip = true
opt-level = "z"