From 9fead5e53540a48217c9ee5105de2ea2d1568bd7 Mon Sep 17 00:00:00 2001 From: Tristan Matthews Date: Tue, 27 May 2025 09:25:10 -0400 Subject: [PATCH] Cargo.toml: exclude contrib from workspace This fixes e.g., `make .rav1e`: "Error: CliError { error: Some(current package believes it's in a workspace when it's not" when building..." See: https://github.com/rust-lang/cargo/issues/5418 Co-authored-by: Alexandre Janniaux --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 1668346030..0276f98e22 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,6 +7,7 @@ members = [ "modules/logger/telegraf-rs/" ] resolver = "2" +exclude = ["contrib"] [workspace.package] version = "4.0.0"