rust
It is too simple that memory grows linearly and lacks the function of releasing memory (which may be supported in the future).
no_std
The default heap size is 1KB
, if you want to modify the size of the heap, provide the WASM_ALLOCATOR_HEAP_SIZE
environment variable, such as WASM_ALLOCATOR_HEAP_SIZE=4096
Using in your wasm
project:
```rust use wasm_allocator::Heap;
static ALLOCATOR: Heap = Heap; ```
MIT