From 46c6329180ad466b2f37341c33eb2b25a9524443 Mon Sep 17 00:00:00 2001 From: Abhijit Gadgil Date: Thu, 12 Oct 2023 09:22:53 +0530 Subject: [PATCH] trivial: Update Cargo.toml template resolver = "2" When we try to run `cargo xtask build-ebpf` etc. we get the warning about Workspace default resolver set to "1". Since all the projects will be 2021 Edition, adding 'resolver = "2"' in the root `Cargo.toml` template to avoid this warning. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index b05400c..bb96436 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,2 +1,3 @@ [workspace] members = ["xtask", "{{project-name}}", "{{project-name}}-common"] +resolver = "2"