A rewrite of native freeRouter tools in Rust
http://freertr.org
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
3 weeks ago | |
---|---|---|
pcap_int | 3 weeks ago | |
tap_int | 3 weeks ago | |
.gitignore | 3 weeks ago | |
Cargo.lock | 3 weeks ago | |
Cargo.toml | 3 weeks ago | |
README.md | 3 weeks ago |
README.md
freertr_native-rs
A rewrite of some of the native tools for freeRouter in Rust.
You can find more information about the tools and features in their respective sub dirctories.
Building tools
To build the tools, you need to have rust installed. Then you
can run cargo build --release
. This will download the dependencies compile the project. The binary will
be located in target/release/<tool name>
.
You can also build the tool directly either by running cargo build --release --bin=<tool name>
or by
running cargo build --release
from it's directory.
Feature flags
Some tools might have extra feature flags you can enable, for that check the READMEs in the sub directories.
To build using a feature flag, use cargo build --release --bin=<tool name> --features=<feature name>
.