From 4e4e6864dd5efea542f5cf7f86a0e70a52fe17b3 Mon Sep 17 00:00:00 2001 From: martin frances Date: Tue, 13 Jun 2023 19:54:39 +0100 Subject: [PATCH] chore: clear virtual-workspace resolver warnings since Rust 1.70 (#1174) This patch just clears the warnings listed below and ensures we get the benefits of a better package manger function. ```console 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 ```console --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index e6b982515..efccf8aee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,4 +1,5 @@ [workspace] +resolver="2" members = [ # core "leptos",