From 60616cf3bbd6c0a933fa464216a4794348012cde Mon Sep 17 00:00:00 2001 From: crumblingstatue Date: Mon, 17 Apr 2023 14:09:46 +0200 Subject: [PATCH] Disable incremental compilation due to rustc bug --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index fae2495..963a414 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,5 +43,8 @@ git = "https://github.com/crumblingstatue/gamedebug_core.git" [dependencies.egui-inspect] git = "https://github.com/crumblingstatue/egui-inspect.git" +[profile.dev] +incremental = false # Buggy on latest rustc nightly, keeps ICEing + [profile.dev.package."*"] opt-level = 2