From a88f46bbee7903815f99150657827fe8a5a165fb Mon Sep 17 00:00:00 2001 From: Chris Pick Date: Tue, 21 May 2024 23:02:15 +0200 Subject: [PATCH] build: Set `resolver = "2"` at the workspace's Cargo.toml This is the default resolver for the 2021 edition, but needs to be set manually in virtual workspaces. https://doc.rust-lang.org/edition-guide/rust-2021/default-cargo-resolver.html#detail --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index b05400c..c03af9e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,2 +1,3 @@ [workspace] +resolver = "2" members = ["xtask", "{{project-name}}", "{{project-name}}-common"]