Skip to content

Commit

Permalink
Release version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Saluki committed May 19, 2021
1 parent 093606d commit 309003b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "arp-scan"
description = "A minimalistic ARP scan tool"
license = "AGPL-3.0-or-later"
version = "0.3.0"
version = "0.4.0"
authors = ["Saluki"]
edition = "2018"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Find all hosts in your local network using this fast ARP scanner. The CLI is wri
Download the `arp-scan` binary for Linux (Ubuntu, Fedora, Debian, ...). See the [releases page](https://github.com/Saluki/arp-scan-rs/releases) for other binaries.

```bash
wget -O arp-scan https://github.com/Saluki/arp-scan-rs/releases/download/v0.3.0/arp-scan-v0.3.0-x86_64-unknown-linux-musl && chmod +x ./arp-scan
wget -O arp-scan https://github.com/Saluki/arp-scan-rs/releases/download/v0.4.0/arp-scan-v0.4.0-x86_64-unknown-linux-musl && chmod +x ./arp-scan
```

List all available network interfaces.
Expand Down Expand Up @@ -53,7 +53,7 @@ List all available network interfaces. Using this option will only print a list

Perform a scan on the network interface `eth0`. The first valid IPv4 network on this interface will be used as scan target.

#### Set timeout `-t 15`
#### Set global scan timeout `-t 15`

Enforce a timeout of at least 15 seconds. This timeout is a minimum value (scans may take a little more time). Default value is `2`.

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const TIMEOUT_DEFAULT: u64 = 2;
fn main() {

let matches = App::new("arp-scan")
.version("0.3.0")
.version("0.4.0")
.about("A minimalistic ARP scan tool written in Rust")
.arg(
Arg::with_name("interface").short("i").long("interface").takes_value(true).value_name("INTERFACE_NAME").help("Network interface")
Expand Down

0 comments on commit 309003b

Please sign in to comment.