safe_allocator_api/
lib.rs

1
2
3
4
5
6
#![doc = include_str!("../README.MD")]
#![cfg_attr(not(feature = "std"), no_std)]
extern crate alloc;

pub mod raw_alloc;
pub use raw_alloc::*;