You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -4,24 +4,24 @@ Endure is a DHCP diagnostics utility installed next to a server or relay. It ana
4
4
5
5
### System and Software Requirements
6
6
7
-
Endure has been tested on Ubuntu 22 and macOS Sonoma 14.1.1. Support for Microsoft Windows is planned. It requires [libpcap](https://www.tcpdump.org) library.
7
+
Endure has been tested on Ubuntu 22 and macOS Sonoma 14.1.1. It requires [libpcap](https://www.tcpdump.org) library.
8
8
9
-
To compile the program on Ubuntu 22, first install `libpcap-dev` using the following command:
9
+
To compile the program on Ubuntu 22, first install `libpcap-dev`:
10
10
11
11
```
12
12
$ apt install libpcap-dev
13
13
```
14
14
15
15
### Building with Cargo
16
16
17
-
Endure is written in [Rust](https://www.rust-lang.org) and can be compiled using the [cargo](https://doc.rust-lang.org/cargo/) utility.
17
+
Endure is written in [Rust](https://www.rust-lang.org) and can be compiled using the [cargo](https://doc.rust-lang.org/cargo/) utility. The minimal required `rustc` version is 1.74.
18
18
19
19
```
20
20
$ cd endure
21
-
$ cargo build
21
+
$ cargo build --release
22
22
```
23
23
24
-
The resulting binary can be found in the `endure/target/debug` directory.
24
+
The resulting binary can be found in the `endure/target/release` directory.
0 commit comments