A drop-in GlobalAlloc
implementation using tcmalloc
from gperftools.
Requires Rust 1.28+
```rust extern crate tcmalloc;
use tcmalloc::TCMalloc;
static GLOBAL: TCMalloc = TCMalloc; ```
Also note that you can only define one global allocator per crate.