1#![feature(associated_type_bounds)] 2 3pub mod indexable; 4pub mod proto; 5 6#[cfg(feature = "unsafe")] 7pub use crate::indexable::*; 8#[cfg(not(feature = "unsafe"))] 9pub use crate::proto::*;