From a5c3af4a9af3c4fd59c4f8eec8be3810f0258c55 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Tue, 19 Apr 2022 19:35:42 +0200 Subject: [PATCH] Use the second revision of Cargo's feature resolver Makes it less likely we end up accidentally depend on an indirectly-activated Cargo feature, and might improve CI times. --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 0b790423..60523669 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,3 +2,5 @@ members = ["crates/*", "examples/*", "xtask"] # xtask should only be compiled when invoked explicitly default-members = ["crates/*", "examples/*"] + +resolver = "2"