coop_heap 0.1.1

Reserved. Heap cooperation for **safe** applications & libraries. See https://github.com/coop-rs/co_heap instead.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![feature(allocator_api, slice_ptr_get)]

mod alloc;
mod global;

// Re-export
pub use alloc::*;
pub use global::*;

// -------
// --------
#[cfg(test)]
mod tests {
    use super::*;
}