From 1297d8518256b8ab96f2bc511ba8f17003e11c69 Mon Sep 17 00:00:00 2001 From: Roman Volosatovs Date: Tue, 28 Mar 2023 17:25:27 +0200 Subject: [PATCH] build: set resolver to `1` With the default resolver `cargo tree` panics with: ``` thread 'main' panicked at 'activated_features for invalid package: features did not find PackageId { name: "actor-echo-module", version: "0.1.0", source: "/home/rvolosatovs/src/github.com/wasmCloud/wasmCloud/tests/actors/echo-module" } NormalOrDev', src/tools/cargo/src/cargo/core/resolver/features.rs:321:14 ``` Tracking issue: https://github.com/rust-lang/cargo/issues/10593 Signed-off-by: Roman Volosatovs --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 300f5ab5df..cd9de8eb35 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,6 +7,7 @@ license = "Apache-2.0" categories = ["wasm"] description = "wasmCloud Host Runtime" repository = "https://github.com/wasmCloud/wasmCloud" +resolver = "1" [badges.maintenance] status = "actively-developed"