From d6a5a7344f64709880e10916ec105ca7c3c574ba Mon Sep 17 00:00:00 2001 From: David Brown Date: Wed, 12 Jun 2024 14:44:46 -0600 Subject: [PATCH] sim: Fix resolver warning from cargo Cargo prints a warning about conflicting resolvers being used. Fix this by explicitly setting the resolver in the project file. Signed-off-by: David Brown --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 46b8a672..185777f5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,7 @@ [workspace] members = ["sim"] exclude = ["ptest"] +resolver = "2" # The simulator runs very slowly without optimization. A value of 1 # compiles in about half the time, but runs about 5-6 times slower. 2