reserve-core 0.1.0

Core lookup, catalog, and rate-limiting engine behind the reserve domain finder
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! The extension catalog: what exists, how it is grouped, and how a sweep narrows it.

mod catalog;
mod extension;
mod group;
mod selection;

pub use catalog::{CATALOG_VERSION, Catalog, SweepPlan};
pub use extension::{Extension, ExtensionKind, Suffix, parse_name};
pub use group::{Family, Group, Selector};
pub use selection::{Depth, Filter, LengthRule, Page, Sort, SortDirection, SortKey};