Rust 基础大纲

Rust 基础大纲

1.Summary

安装

https://www.rust-lang.org/zh-CN/tools/install

bash 复制代码
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

# 安装完成后,验证是否成功
rustc -V
cargo -V

# 创建项目
cargo new my_project
# 编译项目
cargo build
# 生成的可执行文件位于 target/debug/ 目录下。

# 运行程序
# 直接运行以下命令:
cargo run

教材

https://practice.rs/
rust by examples

https://doc.rust-lang.org/stable/rust-by-example/
rust 圣经

https://course.rs/about-book.html
rust 官方文档中文网站

https://rustwiki.org/
Experiment: Improving the Rust Book

https://rust-book.cs.brown.edu/

2 Rust 源

中国区,可能连接 crates.io 会有问题。

$HOME/.cargo/config 中添加如下内容:

bash 复制代码
[source.crates-io]
replace-with = 'ustc'

[source.ustc]
registry = "git://mirrors.ustc.edu.cn/crates.io-index"

如果所处的环境中不允许使用 git 协议,可以把上述地址改为:

bash 复制代码
registry = "https://mirrors.ustc.edu.cn/crates.io-index"

2.1 cargo 版本>= 1.68 支持稀疏索引

可以在 $HOME/.cargo/config 中添加如下内容:
cargo 1.68 版本开始支持稀疏索引:不再需要完整克隆 crates.io-index 仓库,可以加快获取包的速度。

bash 复制代码
[source.crates-io]
replace-with = 'ustc'

[source.ustc]
registry = "sparse+https://mirrors.ustc.edu.cn/crates.io-index/"
相关推荐
白应穷奇1 小时前
Diesel异步编程: 深入理解Rust ORM的异步特性
rust·orm
林太白1 小时前
Rust-角色模块
前端·后端·rust
夕水3 小时前
一起来学习Rust-1
rust
will_csdn_go7 小时前
蓝河操作系统(BlueOS)内核 (VIVO开源)
rust
林太白1 天前
Rust详情修改删除优化
前端·后端·rust
林太白1 天前
Rust新增优化
后端·rust
许野平1 天前
Rust:如何开发32位的DLL动态库
windows·rust·动态库·dll·32位
白应穷奇1 天前
Diesel的高性能特性: 深入理解Rust ORM的性能优化
后端·rust
Hello.Reader2 天前
Rust ⽣成 .wasm 的极致瘦⾝之道
开发语言·rust·wasm
白应穷奇2 天前
Diesel的类型安全: 深入理解Rust ORM的类型系统
rust