1//! # Server-side Kademlia routing table
2//!
3//! The DHT data structure the server uses to answer `BootstrapV1` and
4//! `AnnounceV1` queries and to pick candidate peers for post-bundle lookups —
5//! per-bit buckets, freshness-based eviction, and XOR-distance iteration.
67pub mod kademlia;