From d4c69fd881df411c450a2fc58c2ce039af80a82c Mon Sep 17 00:00:00 2001 From: Chris Krycho Date: Thu, 9 May 2024 12:38:42 -0600 Subject: [PATCH] Fix workspace behavior by excluding `listings` At some point we may want to include these in the workspace, but for now they need to be excluded so `cargo build` and `rust-analyzer` work correctly with the workspace layout. --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index dd7b0e4fac..0a24b0da02 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,10 @@ members = ["packages/*"] default-members = ["packages/*"] resolver = "2" -exclude = ["linkchecker"] # part of the CI workflow +exclude = [ + "linkchecker", # linkchecker is part of the CI workflow + "listings", # these are intentionally distinct from the workspace +] [workspace.dependencies] walkdir = "2.3.1"