Skip to content

Releases: bgpkit/bgpkit-commons

V0.4.2 rpkiviews support

27 Nov 18:26
bd7e72c

Choose a tag to compare

What's Changed

  • Support historical RPKI validation using rpkiviews archive by @digizeph in #6

Full Changelog: v0.4.1...v0.4.2

V0.4.1 Use xz files from RIPE NCC RPKI dump

21 Nov 17:29
98705e0

Choose a tag to compare

What's Changed

Full Changelog: v0.4.0...v0.4.1

V0.4.0 RPKI + Countries

06 Nov 20:07
6f677aa

Choose a tag to compare

What's Changed

Full Changelog: v0.3.0...v0.4.0

V0.3.0 rustls support

13 Sep 16:15
08ac868

Choose a tag to compare

What's Changed

  • Add feature to support rustls-based HTTPS requests by @bswinnerton in #2

New Contributors

Full Changelog: v0.2.0...v0.3.0

V0.2 ASNames

04 Sep 17:15
c09775d

Choose a tag to compare

What's new

  • added AS name and country lookup
use std::collections::HashMap;
use bgpkit_commons::asnames::{AsName, get_asnames};

fn main() {
    let asnames: HashMap<u32, AsName> = get_asnames().unwrap();
    assert_eq!(asnames.get(&3333).unwrap().name, "RIPE-NCC-AS Reseaux IP Europeens Network Coordination Centre (RIPE NCC)");
    assert_eq!(asnames.get(&400644).unwrap().name, "BGPKIT-LLC");
    assert_eq!(asnames.get(&400644).unwrap().country, "US");
}

Full Changelog: https://github.com/bgpkit/bgpkit-commons/commits/v0.2.0