11 lines
307 B
Markdown
11 lines
307 B
Markdown
# Project Map
|
|
|
|
## Main structure
|
|
- root crate or workspace declared in `Cargo.toml`
|
|
- `src/main.rs` or `src/lib.rs` as primary entrypoints
|
|
- `crates/` for workspace members where applicable
|
|
|
|
## Notes
|
|
- Distinguish unit tests from integration tests
|
|
- Check whether feature flags alter build or test behavior
|