pwasm-alloc 0.4.1

Parity WebAssembly standard library internal allocator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![warn(missing_docs)]
#![cfg_attr(feature = "strict", deny(warnings))]
#![no_std]
#![crate_type = "rlib"]
#![feature(allocator_api)]

//! Custom allocator crate for wasm

extern crate wee_alloc;

#[global_allocator]
static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;