diff --git "a/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/4.rustup\347\232\204\344\275\277\347\224\250/config.json" "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/4.rustup\347\232\204\344\275\277\347\224\250/config.json" index c23e9a0df99c632c6e6173257262188763aab44f..b98be32afe207391e009ecba7080d6fad36c751e 100644 --- "a/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/4.rustup\347\232\204\344\275\277\347\224\250/config.json" +++ "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/4.rustup\347\232\204\344\275\277\347\224\250/config.json" @@ -2,7 +2,9 @@ "node_id": "rust-9727d29f9a2140f7acf75a5d80057e9d", "keywords": [], "children": [], - "export": [], + "export": [ + "rustup_usage.json" + ], "keywords_must": [], "keywords_forbid": [] } \ No newline at end of file diff --git "a/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/4.rustup\347\232\204\344\275\277\347\224\250/rustup_usage.json" "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/4.rustup\347\232\204\344\275\277\347\224\250/rustup_usage.json" new file mode 100644 index 0000000000000000000000000000000000000000..2c35752940baa5c53c1d961a783ecca566c45198 --- /dev/null +++ "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/4.rustup\347\232\204\344\275\277\347\224\250/rustup_usage.json" @@ -0,0 +1,7 @@ +{ + "type": "code_options", + "author": "jacky_rust", + "source": "rustup_usage.md", + "notebook_enable": false, + "exercise_id": "10ea7a4735644f6d8ede35025224887a" + } \ No newline at end of file diff --git "a/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/4.rustup\347\232\204\344\275\277\347\224\250/rustup_usage.md" "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/4.rustup\347\232\204\344\275\277\347\224\250/rustup_usage.md" new file mode 100644 index 0000000000000000000000000000000000000000..c5c65768ea042db84a5a3e196fdba5569560e993 --- /dev/null +++ "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/4.rustup\347\232\204\344\275\277\347\224\250/rustup_usage.md" @@ -0,0 +1,40 @@ +# Rustup 的使用 + +Rustup 的前身是 multirust,看名字就可以知道 multirust 是用来管理电脑上多个 rust 环境的工具。 后来 Diggory Blake 重写并命名为 Rustup, 现在由 The Rust Project 维护,是一个官方的 Rust 项目。 + +当你需要在 stable 版本和 nightly 版本切换,或需要切换编译目标(如编译成 wasm)时,都离不开 Rustup。 + +以下哪个命令不是 rustup 命令的正确使用: + +## 答案 + +### clippy 是 cargo 的一个非常有用的 lint 工具,在学习 rust 的时候不时运行 cargo clippy 会学到很多有用的写法。 + +rustup clippy + +## 选项 + +### A + +rustup component list + +### B + +rustup run stable rustc --version + +### C + +rustup show + +### D + +rustup update + +### E + +rustup self update + + \ No newline at end of file