# LearnRust **Repository Path**: dongzi1998/learn-rust ## Basic Information - **Project Name**: LearnRust - **Description**: rust 学习库 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-05 - **Last Updated**: 2022-06-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # learn-rust ## 安装 ```shell # mac curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh # 更改cargo镜像源 vi ~/.cargo/config [source.crates-io] registry = "https://github.com/rust-lang/crates.io-index" replace-with = 'ustc' [source.ustc] registry = "git://mirrors.ustc.edu.cn/crates.io-index" ``` ##