routemap 0.1.3

Fast in-memory IP prefix routing tables for IPv4 and IPv6. Longest Prefix Match via stride-4 treebitmap, built on ipnetx.
Documentation
1
2
3
4
5
6
7
8
#![doc = include_str!("../README.md")]

// Archived arena-based binary trie kept for benchmark comparison.
// Not part of the public API — RouteMap (treebitmap) is the only exported type.
#[allow(dead_code)]
mod arena;
mod treebitmap;
pub use treebitmap::RouteMap;