10 lines
220 B
Rust
10 lines
220 B
Rust
#![cfg_attr(not(test), no_std)]
|
|
#![feature(negative_impls)]
|
|
#![cfg_attr(test, feature(box_vec_non_null))]
|
|
|
|
mod raw_node;
|
|
|
|
extern crate alloc;
|
|
|
|
pub use raw_node::{Color, RBTree, Side, TreeIter, TreeNodeIter, UnsafeNode};
|