safe-allocator-api 0.6.0

A safe wrapper around the `allocator_api`'s Allocator trait.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![doc = include_str!(concat!("../", env!("CARGO_PKG_README")))]
#![no_std]
#![cfg_attr(feature = "nightly", feature(allocator_api))]

extern crate alloc;
#[cfg(feature = "std")]
extern crate std;

pub mod raw_alloc;
pub use raw_alloc::*;
pub mod prelude;
pub use prelude::*;