Basic workspace root snippet.
Section: Manifest repair snippets
Define workspace members explicitly
toml
toml
[workspace]
members = ["crates/my-cli", "crates/common"]
resolver = "2"Explanation
When a package is missing from workspace commands, verify that it is listed under `members` or matched by a glob you intended.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing Manifest repair snippets
Declare optional dependencies with features
Avoid feature-resolution confusion.
Run one package and one binary
Disambiguate package and binary target in a multi-package repo.