mirror of https://github.com/sunface/rust-course
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1.6 KiB
1.6 KiB
标准的Package目录结构
一个典型的 Package
目录结构如下:
.
├── Cargo.lock
├── Cargo.toml
├── src/
│ ├── lib.rs
│ ├── main.rs
│ └── bin/
│ ├── named-executable.rs
│ ├── another-executable.rs
│ └── multi-file-executable/
│ ├── main.rs
│ └── some_module.rs
├── benches/
│ ├── large-input.rs
│ └── multi-file-bench/
│ ├── main.rs
│ └── bench_module.rs
├── examples/
│ ├── simple.rs
│ └── multi-file-example/
│ ├── main.rs
│ └── ex_module.rs
└── tests/
├── some-integration-tests.rs
└── multi-file-test/
├── main.rs
└── test_module.rs
这也是 Cargo
推荐的目录结构,解释如下:
Cargo.toml
和Cargo.lock
保存在package
根目录下- 源代码放在
src
目录下 - 默认的
lib
包根是src/lib.rs
- 默认的二进制包根是
src/main.rs
- 其它二进制包根放在
src/bin/
目录下
- 其它二进制包根放在
- 基准测试 benchmark 放在
benches
目录下 - 示例代码放在
examples
目录下 - 集成测试代码放在
tests
目录下
关于 Rust 中的包和模块,之前的章节有更详细的解释。
这里的一些目录配置还能通过配置文件来修改,详情参见本章的后续章节修改默认的文件目录