From 3eecbb6b6968a4ad578e5bffafaa5609e95a1f87 Mon Sep 17 00:00:00 2001 From: Thibaut Lorrain Date: Sun, 9 Feb 2025 23:56:43 +0100 Subject: [PATCH] fix workspace resolver warning in test-ws I also bumped the edition of all the crates in the test workspace to 2021 --- test-ws/Cargo.toml | 1 + test-ws/test-app/Cargo.toml | 2 +- test-ws/test-proc-macro/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/test-ws/Cargo.toml b/test-ws/Cargo.toml index c5386a7f..c95df862 100644 --- a/test-ws/Cargo.toml +++ b/test-ws/Cargo.toml @@ -1,2 +1,3 @@ [workspace] members = ["test-app", "test-proc-macro", "test-bin"] +resolver = "2" diff --git a/test-ws/test-app/Cargo.toml b/test-ws/test-app/Cargo.toml index 8cf5b3f3..f9e21e64 100644 --- a/test-ws/test-app/Cargo.toml +++ b/test-ws/test-app/Cargo.toml @@ -2,7 +2,7 @@ name = "test-app" version = "0.1.0" authors = ["Mathieu Poumeyrol "] -edition = "2018" +edition = "2021" workspace = "../" [features] diff --git a/test-ws/test-proc-macro/Cargo.toml b/test-ws/test-proc-macro/Cargo.toml index 85ad233f..c4aa03bd 100644 --- a/test-ws/test-proc-macro/Cargo.toml +++ b/test-ws/test-proc-macro/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "test-proc-macro" version = "0.1.0" -edition = "2018" +edition = "2021" workspace = "../" [lib]