From 7005a490b20efa8da7aafc5d7271963f88321b75 Mon Sep 17 00:00:00 2001 From: Marijn Suijten Date: Tue, 21 Nov 2023 11:14:32 +0100 Subject: [PATCH] cargo: Set `resolver = "2"` and avoid warning Since a few Rust versions `cargo` complains: warning: virtual workspace defaulting to `resolver = "1"` despite one or more workspace members being on edition 2021 which implies `resolver = "2"` Avoid that by setting the resolver for the virtual manifest to `"2"` explicitly. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 4138968..17b22f7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,4 +1,5 @@ [workspace] +resolver = "2" members = [ "analysis", "ash",