malloc 0.0.4

A malloc implementation for a web assembly
docs.rs failed to build malloc-0.0.4
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: malloc-0.0.2

malloc

A memory allocator for web assembly.

  • #![no_std] and stable
  • small footprint for smaller wasm
  • simple to learn from

Usage

[dependencies]
malloc = "0.0.1"
#[global_allocator]
static ALLOCATOR:malloc::Allocator = malloc::Allocator;