Rust bgpq3

github crates.io docs.rs

This library provides a thing wrapper around the [bgpq3]/[bgpq4] binary.

Example

```rust extern crate bgpq3;

pub fn main() { let networks = bgpq3::Bgpq3::new().query_v6("AS-RAPPET").unwrap(); println!("{:?}", networks); } ```