From 1e93a97caa324c8b8675a613fe4775842493a08c Mon Sep 17 00:00:00 2001 From: hector Date: Mon, 24 Aug 2026 06:48:03 +0000 Subject: [PATCH] feat: make mimalloc the default allocator Add mimalloc to default features so it is enabled by default without requiring --features mimalloc flag. Co-Authored-By: heihutu --- rustfs/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rustfs/Cargo.toml b/rustfs/Cargo.toml index c6a9c401e..2091478bc 100644 --- a/rustfs/Cargo.toml +++ b/rustfs/Cargo.toml @@ -40,7 +40,7 @@ name = "rustfs-cli" path = "src/bin/rustfs-cli.rs" [features] -default = ["ftps", "webdav"] +default = ["ftps", "webdav", "mimalloc"] metrics-gpu = ["rustfs-obs/gpu"] ftps = ["rustfs-protocols/ftps"] swift = ["rustfs-protocols/swift"]