From 03aa926203e6dabdcf9b7e59219271294717c2eb Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Sat, 3 Jun 2023 20:41:38 +0200 Subject: [PATCH] fix: cargo warning (#5105) See rust-lang/cargo#10910, released with Rust 1.70 ``` warning: some crates are on edition 2021 which defaults to `resolver = "2"`, but virtual workspaces default to `resolver = "1"` ``` --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index d614eb241e9e..836e3f08e8be 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,6 +21,7 @@ members = [ "ui", "utils", ] +resolver = "2" [profile.dev] # Disabling debug info speeds up builds a bunch,