Switch to c-scape's malloc-via-crates mode, in which c-scape provides malloc using rustix-dlmalloc directly, and Rust defaults to using malloc.
This removes mustang's features for different allocators, but it adds the ability for Mustang users to install their own allocators using the normal #[global_allocator] mechanism.
Switch to c-scape's malloc-via-crates mode, in which c-scape provides
malloc
using rustix-dlmalloc directly, and Rust defaults to usingmalloc
.This removes mustang's features for different allocators, but it adds the ability for Mustang users to install their own allocators using the normal
#[global_allocator]
mechanism.