bgpq3 0.1.0

A wrapper around the bgpq3/bgpq4 binary
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate bgpq3;
extern crate tokio;

#[tokio::main]
pub async fn main() -> std::io::Result<()> {
    let networks = bgpq3::Bgpq3::new().tokio_query_v6("AS-RAPPET").await?;
    println!("{:?}", networks);

    Ok(())
}