From a6f67f42878f0b657be73504691027f54ebb4094 Mon Sep 17 00:00:00 2001 From: chmousset Date: Thu, 19 Dec 2024 10:33:57 +0100 Subject: [PATCH] fix panic with arena size of 128 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 66d26f0..e01d3d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ embassy-executor = { version = "0.6.1", features = [ "integrated-timers", "arch-spin", "executor-thread", - "task-arena-size-128", # or better use nightly, but fails on recent Rust versions + "task-arena-size-192", # or better use nightly, but fails on recent Rust versions ] } embassy-time = { version = "0.3.0" } {%- endif %}