From 50878901bad87011c88ae7783a7555d3ba5e8d24 Mon Sep 17 00:00:00 2001 From: martin frances Date: Tue, 5 Sep 2023 12:28:33 +0100 Subject: [PATCH] chore: resolves a warning seen while running cargo update (#7753) * chore: resolves a warning seen while running cargo update warning: some crates are on edition 2021 which defaults to `resolver = "2"`, but virtual workspaces default to `resolver = "1"` note: to keep the current resolver, specify `workspace.resolver = "1"` in the workspace root's manifest note: to use the edition 2021 resolver, specify `workspace.resolver = "2"` in the workspace root's manifest * Now using resolver 2. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index af5d14713..356d8c6c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,4 +1,5 @@ [workspace] +resolver = "2" members = [ # core "core/tauri",