nftables 0.6.3

Safe abstraction for nftables JSON API. It can be used to create nftables rulesets in Rust and parse existing nftables rulesets from JSON.
Documentation
1
2
3
4
5
6
use nftables::cli;

fn main() {
    let args = cli::collect_command_args();
    cli::handle_args(args);
}