From c5a6c73a93c59cee94c570c036ea12162bc196e5 Mon Sep 17 00:00:00 2001 From: maozhonggui <5487654@qq.com> Date: Sun, 5 Jun 2022 19:12:30 +0800 Subject: [PATCH] add rustup_usage --- .../config.json" | 4 +- .../rustup_usage.json" | 7 ++++ .../rustup_usage.md" | 40 +++++++++++++++++++ 3 files changed, 50 insertions(+), 1 deletion(-) create mode 100644 "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" create mode 100644 "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" 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 c23e9a0..b98be32 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 0000000..2c35752 --- /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 0000000..c5c6576 --- /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 -- GitLab