Quick Network Scanner Library
Rust library for scanning network hosts asynchronously.
Currently only TCP connect scan is supported.
NOTE: in order to properly use the library you may need to increase the maximum allowed open files. E.g.:
See the library on crates.io.
Usage
Dependencies (Cargo.toml):
and then (src/main.rs):
use QScanner;
use Runtime;
See also the provided example.