// SPDX-License-Identifier: BUSL-1.1
//! CSR adjacency index — re-exported from the shared `nodedb-graph` crate.
//!
//! The core CSR implementation (index, weights, compaction, persistence,
//! statistics, memory tracking, traversal) lives in `nodedb-graph`.
//! This module re-exports everything and adds Origin-specific methods
//! that depend on Origin-only types (e.g., `EdgeStore`).
// Re-export all shared crate types.
pub use ;
pub use memory;
pub use slice_accessors;
pub use ;
pub use ;