diff --git a/README.MD b/README.MD index 95f4ee8..2118980 100644 --- a/README.MD +++ b/README.MD @@ -10,21 +10,23 @@ - [Rust 程序设计语言](https://kaisery.github.io/trpl-zh-cn/) -## 子包创建 +## 子包 +### 通用 +#### 新建子包 例子: ```shell cargo new 5.function --name function ``` -### 编译某个子包 +#### 编译某个子包 ```shell cargo build --manifest-path 5.function/Cargo.toml ``` -### 运行某个子包 +#### 运行某个子包 ```shell cargo run --manifest-path 5.function/Cargo.toml ``` -### 工作空间 workspace +### 基于 工作空间 workspace 管理子包 参考文档 - https://course.rs/cargo/reference/workspaces.html