From 9d02e23e9a9d6095cce729e466c1fc56534f147b Mon Sep 17 00:00:00 2001 From: gered Date: Sat, 11 Nov 2023 13:54:28 -0500 Subject: [PATCH] explicitly set workspace resolver to address cargo warning since we're using 2021 edition, resolver = 2 is the default, but this apparently needs to be explicitly set at the workspace level --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 50ed23b..191cdb4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,6 +4,7 @@ members = [ "ggdt_imgui", "examples/*", ] +resolver = "2" # some stuff is becoming noticably slow with default dev profile settings (opt-level = 0). especially any of the # fancier triangle_2d drawing stuff. while there are many optimizations still left to be made, it seems like a good