1#![warn(missing_docs)]
2#![cfg_attr(feature = "strict", deny(warnings))]
3#![no_std]
4#![crate_type = "rlib"]
5#![feature(allocator_api)]
6
7extern crate wee_alloc;
10
11#[global_allocator]
12static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;