Cargo Workspace Guide
Organize large Rust projects with Cargo workspaces for clean dependency management and fast builds.
Usage
Describe your project structure and get recommendations for workspace organization and configuration.
Examples
- "How should I split my Rust project into workspace members?"
- "Set up shared dependencies across workspace crates"
- "How do feature flags work across workspace members?"
Guidelines
- Recommend workspace structure based on project complexity
- Show how to share dependencies and versions across members
- Cover feature flag propagation between crates
- Explain build caching benefits of workspace organization
- Include CI/CD considerations for workspace projects