From 2bfa95de241034432b5f93b38829c48f93a83dda Mon Sep 17 00:00:00 2001 From: Erikson Tung Date: Fri, 25 Aug 2023 12:12:54 -0700 Subject: [PATCH] chore: explicity set cargo feature resolver version to 2 This gets rid of a warning that comes with rust 1.72.0. This does not impact any of our existing crates since they're all on edition 2021. See https://github.com/rust-lang/cargo/issues/10112 --- tools/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/Cargo.toml b/tools/Cargo.toml index 03fb9b38b..223aaf879 100644 --- a/tools/Cargo.toml +++ b/tools/Cargo.toml @@ -1,4 +1,5 @@ [workspace] +resolver = "2" members = [ "infrasys", "buildsys",