lib.rs 414 B

123456789101112131415161718192021222324
  1. #![no_std]
  2. #![allow(incomplete_features)]
  3. #![feature(specialization)]
  4. #![feature(strict_provenance)]
  5. #![feature(test)]
  6. extern crate alloc;
  7. pub use cursor::{Cursor, CursorMut};
  8. pub use entry::{ArcRef, BoxRef, ItemEntry};
  9. pub use mark::XMark;
  10. pub use range::Range;
  11. pub use xarray::XArray;
  12. mod borrow;
  13. mod cursor;
  14. mod entry;
  15. mod mark;
  16. mod node;
  17. mod range;
  18. mod xarray;
  19. #[cfg(all(test, feature = "std"))]
  20. mod test;