-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (38 loc) · 924 Bytes
/
Cargo.toml
File metadata and controls
46 lines (38 loc) · 924 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
39
40
41
42
43
44
45
46
[package]
name = "rtcps"
authors = ["Sarah Petkovic"]
description = "Rust TCP Scanner"
license = "MIT OR Apache-2.0"
version = "1.0.2"
readme = "README.md"
repository = "https://github.com/ras-drive/rtcps/"
keywords = ["port", "scanning", "nmap"]
categories = ["command-line-utilities"]
edition = "2021"
[dependencies]
rand = "0.8"
dashmap = "5"
smol = "1.3"
log = "0.4"
env_logger = "0.10"
chrono = "0.4"
[dependencies.tokio]
version = "1"
features = ["macros", "rt-multi-thread", "net"]
[dependencies.clap]
version = "4.1"
features = ["derive"]
[dev-dependencies]
criterion = { version = "0.4", features = ["html_reports", "async_smol"] }
pprof = { version = "0.11", features = ["flamegraph", "criterion"] }
hyper = { version = "0.14", features = ["server", "tcp", "http2"] }
[lib]
bench = false
[[bin]]
name = "rtcps"
bench = false
[[bench]]
name = "all_port_bench"
harness = false
[profile.release]
debug = true