jemallocator 0.1.0

A Rust allocator backed by jemalloc
1
2
3
4
5
6
7
extern crate jemallocator;

#[test]
fn smoke() {
    let mut a = Vec::new();
    a.push(3);
}