2026-05-21 16:16:14 +02:00
|
|
|
## Crates
|
|
|
|
|
|
|
|
|
|
Independent Rust app crates live in this directory.
|
|
|
|
|
|
|
|
|
|
Each subdirectory should be a normal Cargo package with its own `Cargo.toml`.
|
2026-05-29 15:11:37 +02:00
|
|
|
The repository root is a virtual workspace, so shared commands such as `make format`, `make lint`, and `make test` run across all crates.
|
2026-05-21 16:16:14 +02:00
|
|
|
|
|
|
|
|
Suggested shape:
|
|
|
|
|
|
|
|
|
|
```text
|
|
|
|
|
crates/
|
|
|
|
|
app-name/
|
|
|
|
|
Cargo.toml
|
|
|
|
|
src/
|
|
|
|
|
main.rs
|
|
|
|
|
```
|