🦀
Rust Cookbook
  • Introduction
  • Rust Introduction
  • Collections
    • Hashing
  • Text Processing
    • Splitting a string
    • Converting a string to vectors and back
    • Twoway
  • Benchmarking
    • criterion
  • Testing
  • Package Management
    • Cargo workspaces
  • Concurrent Programming
    • Actor model
      • Actix actors
      • Bastion
  • Parallel Programming
    • Ryaon
  • Optimisations
    • Cache alignment
  • TODO
Powered by GitBook
On this page
  1. Package Management

Cargo workspaces

PreviousPackage ManagementNextConcurrent Programming

Last updated 5 years ago

How to create a workspace for managing multiple cargo projects?

A 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",
]
workspace