From 2ad877309a0e10372173f511bc0b2a1082077e50 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"]