buddy-alloc 0.2.0

Buddy-alloc is a Rust implemented allocator, used for embedded environments.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Buddy-alloc
[![Crates.io](https://img.shields.io/crates/v/buddy-alloc.svg)](https://crates.io/crates/buddy-alloc)


Buddy-alloc is a Rust implemented allocator, used for embedded environments.

## Usage

Check [examples](https://github.com/jjyr/buddy-alloc/tree/master/examples) and [Rust Doc](https://docs.rs/buddy-alloc).

## Why

I want to use the `alloc` crate in the CKB-VM(an embedded-like environment) without introducing libc; to implement a pure Rust memory allocator comes to my head, buddy memory allocation is simple and efficient enough for my use case, it may be used in other similar embedded environments.

## License

MIT