libreal 0.14.1

Utility library for programmers working in the real world, where heap allocation can fail
1
2
3
4
5
6
7
8
9
10
11
12
#![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};