From 555b9a9f5f15066cdd987607996924e93be989ba Mon Sep 17 00:00:00 2001 From: martinfrances107 Date: Mon, 16 Oct 2023 11:21:34 +0100 Subject: [PATCH] Resolved the issue below, as reported by cargo clippy. ``` 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 ``` --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 8645972..29dc5bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,4 +1,5 @@ [workspace] +resolver="2" members = [ "awaken", "clocksource",