mirror of
https://github.com/logos-storage/proof-aggregation.git
synced 2026-01-10 09:43:10 +00:00
8 lines
170 B
Rust
8 lines
170 B
Rust
// Set up Jemalloc
|
|
#[cfg(not(target_env = "msvc"))]
|
|
use jemallocator::Jemalloc;
|
|
|
|
#[cfg(not(target_env = "msvc"))]
|
|
#[global_allocator]
|
|
static GLOBAL: Jemalloc = Jemalloc;
|