Releases: bgpkit/bgpkit-commons
Releases · bgpkit/bgpkit-commons
V0.4.2 rpkiviews support
What's Changed
Full Changelog: v0.4.1...v0.4.2
V0.4.1 Use xz files from RIPE NCC RPKI dump
V0.4.0 RPKI + Countries
What's Changed
Full Changelog: v0.3.0...v0.4.0
V0.3.0 rustls support
What's Changed
- Add feature to support rustls-based HTTPS requests by @bswinnerton in #2
New Contributors
- @bswinnerton made their first contribution in #2
Full Changelog: v0.2.0...v0.3.0
V0.2 ASNames
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