Go to file
2024-05-25 17:52:48 +08:00
.idea 更新 variable 2024-05-25 16:56:30 +08:00
1.hello_world hello_world 1~2 2022-06-26 15:01:16 +08:00
2.hello_cargo 冒泡排序 2024-05-23 14:22:10 +08:00
3.guessing_game 3.guessing_game 猜数游戏 2022-06-26 19:53:13 +08:00
4.variables 更新 variable 2024-05-25 16:56:30 +08:00
5.function 工作空间 workspace 试水 2024-05-25 17:46:51 +08:00
x.bubble_sort 冒泡排序 2024-05-23 14:22:10 +08:00
.gitignore 工作空间 workspace 试水 2024-05-25 17:46:51 +08:00
Cargo.toml 工作空间 workspace 试水 2024-05-25 17:46:51 +08:00
README.MD 更新 README.md 2024-05-25 17:52:48 +08:00

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