From dd2c43c5b5b7b908fd58f9d6a6206961dc736e91 Mon Sep 17 00:00:00 2001 From: Erikson Tung Date: Thu, 31 Aug 2023 10:52:47 -0700 Subject: [PATCH] chore: specify feature resolver="1" in all rust workspaces This gets rid of a warning that comes with rust 1.72.0. This does not impact any of our workspaces since we've always been defaulted to using resolver version 1. We can't use resolver v2 yet since that breaks the 'cargo make build-package' task. See rust-lang/cargo#10112 for more details. --- sources/Cargo.toml | 1 + tools/Cargo.toml | 1 + variants/Cargo.toml | 1 + 3 files changed, 3 insertions(+) diff --git a/sources/Cargo.toml b/sources/Cargo.toml index 119fca65ea9..e4953beecb5 100644 --- a/sources/Cargo.toml +++ b/sources/Cargo.toml @@ -1,4 +1,5 @@ [workspace] +resolver = "1" members = [ "api/apiserver", "api/apiclient", diff --git a/tools/Cargo.toml b/tools/Cargo.toml index 03fb9b38b5e..e6efc568b7e 100644 --- a/tools/Cargo.toml +++ b/tools/Cargo.toml @@ -1,4 +1,5 @@ [workspace] +resolver = "1" members = [ "infrasys", "buildsys", diff --git a/variants/Cargo.toml b/variants/Cargo.toml index 4c8b80ed1f7..7272c54d425 100644 --- a/variants/Cargo.toml +++ b/variants/Cargo.toml @@ -1,4 +1,5 @@ [workspace] +resolver = "1" members = [ "aws-dev", "aws-ecs-1",