From e42fc3811fd47e1af460574c6e2ceb72308d1c1c Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Sun, 7 Sep 2025 13:20:19 +0200 Subject: [PATCH] Fix compiling with profiling feature enabled --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index d8b4294e6e..dc7098f383 100644 --- a/src/main.rs +++ b/src/main.rs @@ -51,6 +51,7 @@ #![feature(array_chunks)] #![feature(if_let_guard)] #![feature(iterator_try_collect)] +#![feature(new_zeroed_alloc)] #[macro_use] extern crate alloc;