Skip to content

Commit

Permalink
Fix workspace behavior by excluding listings
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
chriskrycho committed May 9, 2024
1 parent 93a7176 commit d4c69fd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit d4c69fd

Please sign in to comment.