A high performance #[global_allocator] implementation using the bump-pointer allocation algorithm
As a rust custom global allocaor:
```rust extern crate bump_allocator;
static GLOBAL: bumpallocator::BumpPointer = bumpallocator::BumpPointer;
fn main() { // Heap allocations here... let _boxed = Box::new(233); } ```
As a malloc() replacement:
```bash cargo build --release LDPRELOAD=target/release/libbumpallocator.so your_program
```