From 6ada1147b34886f0174497330bac3fa579823dac Mon Sep 17 00:00:00 2001 From: Ralf Biedert Date: Fri, 12 Dec 2025 12:17:35 +0100 Subject: [PATCH] Update mimalloc dependency instructions to avoid FFI issues --- src/guidelines/apps/M-MIMALLOC-APPS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guidelines/apps/M-MIMALLOC-APPS.md b/src/guidelines/apps/M-MIMALLOC-APPS.md index 9f9ef0e..579786c 100644 --- a/src/guidelines/apps/M-MIMALLOC-APPS.md +++ b/src/guidelines/apps/M-MIMALLOC-APPS.md @@ -12,7 +12,7 @@ Changing the allocator only takes a few lines of code. Add mimalloc to your `Car ```toml [dependencies] -mimalloc = { version = "0.1" } # Or later version if available +mimalloc = { version = "0.1", features = ["v3"] } # Or later version if available ``` Then use it from your `main.rs`: