From a4fe30f933ed9712182b86946013f5eaabaa6f02 Mon Sep 17 00:00:00 2001 From: houseme Date: Sat, 1 Aug 2026 01:53:07 +0800 Subject: [PATCH] feat(hotpath): use mimalloc in counting allocator --- rustfs/src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rustfs/src/main.rs b/rustfs/src/main.rs index 74d652be3..ca0063f39 100644 --- a/rustfs/src/main.rs +++ b/rustfs/src/main.rs @@ -14,7 +14,8 @@ #[cfg(all(feature = "hotpath", feature = "hotpath-alloc"))] #[global_allocator] -static GLOBAL: hotpath::CountingAllocator = hotpath::CountingAllocator::new(); +static GLOBAL: hotpath::CountingAllocator = + hotpath::CountingAllocator::new(); #[cfg(not(all(feature = "hotpath", feature = "hotpath-alloc")))] #[global_allocator]