Cargo 使用文件放置慣例,以便輕松進入新的 Cargo 項目:
.
├── Cargo.lock
├── Cargo.toml
├── benches
│ └── large-input.rs
├── examples
│ └── simple.rs
├── src
│ ├── bin
│ │ └── another_executable.rs
│ ├── lib.rs
│ └── main.rs
└── tests
└── some-integration-tests.rs
這些將在更詳細的清單描述說明中解釋.
更多建議: