From 058204f8bccd59a3046fb344019da339f551a475 Mon Sep 17 00:00:00 2001 From: Niko PLP Date: Sat, 11 Oct 2025 23:40:31 +0300 Subject: [PATCH] restore opt-level for dev, set it for test --- Cargo.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ad0bd34..b5845ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,8 +55,12 @@ documentation = "https://docs.nextgraph.org/" lto = true opt-level = 's' -[profile.dev] +[profile.test] opt-level = 1 +debug = "full" + +[profile.dev] +opt-level = 2 [patch.crates-io] # tauri = { git = "https://github.com/simonhyll/tauri.git", branch="fix/ipc-mixup"}