#![no_std]
extern crate containers;
pub extern crate io;
pub extern crate rel;
#[deprecated(since = "0.8.0", note = "moved to `collections`")] pub mod b_tree { pub use collections::b_tree::*; }
#[deprecated(since = "0.8.0", note = "moved to `collections`")] pub mod hash_table { pub use collections::hash_table::*; }
#[deprecated(since = "0.8.0", note = "moved to `collections`")] pub mod heap { pub use collections::heap::*; }
#[deprecated(since = "0.8.0", note = "moved to `collections`")] pub mod vec { pub use collections::vec::*; }
pub use containers::{boxed, collections};