> For the complete documentation index, see [llms.txt](https://rust-book.dewaka.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://rust-book.dewaka.com/package-management/cargo-workspaces.md).

# Cargo workspaces

## How to create a workspace for managing multiple cargo projects?

A [workspace](https://doc.rust-lang.org/book/ch14-03-cargo-workspaces.html) can be defined to group multiple cargo projects. Following is the main workspace definition for the code for this project's examples.

```
[workspace]

members = [
  "benchmarking",
  "testing",
  "text-processing",
]
```
