From 683d3e0d2d1de30eb7895861627203e62702a770 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Sun, 17 Sep 2023 14:14:06 +0300 Subject: chore(tvix): upgrade workspace.resolver to "2" This shuts off the following warning: ``` warning: some crates are on edition 2021 which defaults to `resolver = "2"`, but virtual workspaces default to `resolver = "1"` note: to keep the current resolver, specify `workspace.resolver = "1"` in the workspace root's manifest note: to use the edition 2021 resolver, specify `workspace.resolver = "2"` in the workspace root's manifest ``` Stuff still seems to work with it, so no need to stick with "1". See https://doc.rust-lang.org/edition-guide/rust-2021/default-cargo-resolver.html for more details. Change-Id: I6056d95cd5cb793f37ef843ed43009a27ad36367 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9342 Reviewed-by: raitobezarius Reviewed-by: Connor Brewster Tested-by: BuildkiteCI --- tvix/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/tvix/Cargo.toml b/tvix/Cargo.toml index 314e329e6f..938364fc26 100644 --- a/tvix/Cargo.toml +++ b/tvix/Cargo.toml @@ -16,6 +16,7 @@ # extra steps or other auxiliary targets. [workspace] +resolver = "2" members = [ "cli", -- cgit 1.4.1