From 1faabd922b064133ec4edbda1353fc091f75d627 Mon Sep 17 00:00:00 2001 From: Ian Douglas Scott Date: Fri, 5 Jan 2024 10:22:42 -0800 Subject: [PATCH] Set `resolver = "2"` in top-level workspace `Cargo.toml` Fixes a warning from cargo. All the subcrates are on 2021 edition with the new resolver. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 49a084902a1..8c192b4145d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,4 +1,5 @@ [workspace] +resolver = "2" members = [ "wayland-backend", "wayland-client",