osom_lib_btree/lib.rs
1//! This crate defines and implements the B Tree related
2//! data structures and algorithms.
3#![deny(warnings)]
4#![allow(unused_features)]
5#![cfg_attr(docsrs, feature(doc_cfg))]
6#![cfg_attr(docsrs, allow(unused_attributes))]
7#![warn(clippy::all, clippy::pedantic)]
8#![allow(clippy::redundant_field_names, clippy::inline_always)]
9#![no_std]
10
11pub mod btree;
12pub mod defaults;
13pub mod errors;
14
15#[cfg(feature = "std")]
16#[cfg_attr(docsrs, doc(cfg(feature = "std")))]
17pub mod std;