From 84c8e5df43c49725e0f1fee5af33da40d9cc4506 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Mon, 31 Mar 2025 12:54:58 +0200 Subject: [PATCH] Use resolver 2 instead of 3 resolver 3 requires dependent crates referencing the git repo to have resolver 3 themselves, which requires edition 2024. edition 2024 requires rustc 1.85 released last month and non-trivial changes in some of said crates, so it is a bit early to require it now. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 00fe95b2..8c62f650 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace] -resolver = "3" +resolver = "2" members = [ "algo", "cli",