.idea | ||
1.hello_world | ||
2.hello_cargo | ||
3.guessing_game | ||
4.variables | ||
5.function | ||
x.bubble_sort | ||
.gitignore | ||
Cargo.toml | ||
README.MD |
Rust Study
自学 Rust 仓库
参考资料
子包
通用
新建子包
例子:
cargo new 5.function --name function
编译某个子包
cargo build --manifest-path 5.function/Cargo.toml
运行某个子包
cargo run --manifest-path 5.function/Cargo.toml
基于 工作空间 workspace 管理子包
参考文档
编译所有子包
cargo build --workspace
编译工作空间下 某个子包
cargo build -p variables
运行工作空间下 某个子包
cargo run -p function