Best effort memory allocator
GlobalAllocator implementation best suited for target platform
It uses tcmalloc-better on linux (x86_64, aarch64) and mimalloc on other platforms. Both wrappers are based on general-purpose, performance-oriented allocators built by Google and Microsoft respectively.
Usage
use BEMalloc;
static GLOBAL: BEMalloc = new;
Requirements
A C/C++ compilers are required for building allocator with cargo.