mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2024-11-14 21:11:31 +08:00
Merge pull request #647 from mowangjuanzi/pr-1
Update ch01-03-hello-cargo.md
This commit is contained in:
commit
aa08842e5a
@ -2,7 +2,7 @@
|
||||
|
||||
> [ch01-03-hello-cargo.md](https://github.com/rust-lang/book/blob/main/src/ch01-03-hello-cargo.md)
|
||||
> <br>
|
||||
> commit 1e17bf15b12f6f7b8d1711dbd343ef8993f64baa
|
||||
> commit 0a5421ceb238357b3634fb75234eba4d1dad643c
|
||||
|
||||
Cargo 是 Rust 的构建系统和包管理器。大多数 Rustacean 们使用 Cargo 来管理他们的 Rust 项目,因为它可以为你处理很多任务,比如构建代码、下载依赖库并编译这些库。(我们把代码所需要的库叫做 **依赖**(*dependencies*))。
|
||||
|
||||
@ -43,6 +43,8 @@ name = "hello_cargo"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user