rustscan 2.4.1

Faster Nmap Scanning with Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
test:
    cargo nextest run
    cargo clippy -- --deny warnings
    cargo clippy --tests -- --deny warnings
    cargo fmt --check
    cargo doc --workspace --all-features --no-deps --document-private-items

fix:
    cargo fmt
    cargo clippy --fix

# release only runs if test runs
release: test
    git checkout master
    git pull
    cargo generate-lockfile
    cargo publish 
    git push