allocator_api 0.1.0

A copy of the unstable allocator_api (https://github.com/rust-lang/rust/issues/32838) Usable with stable rust, but requires 1.25.
Documentation
1
2
3
4
5
6
7
8
9
#![no_std]

pub mod allocator;
pub mod boxed;
pub mod raw_vec;

pub use allocator::*;
pub use boxed::*;
pub use raw_vec::*;