From 7d601455eefb758ea19de967f1fd407c4d8f2bd4 Mon Sep 17 00:00:00 2001 From: jackymao Date: Wed, 15 Dec 2021 17:49:47 +0800 Subject: [PATCH] add rust_toolchain exercise --- .../config.json" | 4 ++- .../rust_toolchain.json" | 6 ++++ .../rust_toolchain.md" | 29 +++++++++++++++++++ 3 files changed, 38 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/3.\350\256\244\350\257\206rust\345\267\245\345\205\267\351\223\276/rust_toolchain.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/3.\350\256\244\350\257\206rust\345\267\245\345\205\267\351\223\276/rust_toolchain.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/3.\350\256\244\350\257\206rust\345\267\245\345\205\267\351\223\276/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/3.\350\256\244\350\257\206rust\345\267\245\345\205\267\351\223\276/config.json" index 044e8d6..8320377 100644 --- "a/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/3.\350\256\244\350\257\206rust\345\267\245\345\205\267\351\223\276/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/3.\350\256\244\350\257\206rust\345\267\245\345\205\267\351\223\276/config.json" @@ -2,5 +2,7 @@ "node_id": "rust-0d9e5f9449b94aa692a363f21a66c8af", "keywords": [], "children": [], - "export": [] + "export": [ + "rust_toolchain.json" + ] } \ 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/3.\350\256\244\350\257\206rust\345\267\245\345\205\267\351\223\276/rust_toolchain.json" "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/3.\350\256\244\350\257\206rust\345\267\245\345\205\267\351\223\276/rust_toolchain.json" new file mode 100644 index 0000000..05f3eab --- /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/3.\350\256\244\350\257\206rust\345\267\245\345\205\267\351\223\276/rust_toolchain.json" @@ -0,0 +1,6 @@ +{ + "type": "code_options", + "author": "jacky_rust", + "source": "rust_toolchain.md", + "notebook_enable": false + } \ 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/3.\350\256\244\350\257\206rust\345\267\245\345\205\267\351\223\276/rust_toolchain.md" "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/3.\350\256\244\350\257\206rust\345\267\245\345\205\267\351\223\276/rust_toolchain.md" new file mode 100644 index 0000000..5dc1ccc --- /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/3.\350\256\244\350\257\206rust\345\267\245\345\205\267\351\223\276/rust_toolchain.md" @@ -0,0 +1,29 @@ +# 认识 Rust 工具链 + +Rust 有完善的工具和工具链,如 rustup, cargo, rust-docs, rustfmt, clippy 等,其对于开发效率的提升,常常让从其它语言迁移过来的人感觉如沐春风。 + +以下哪个命令可能查看当前安装的工具链及当前正在使用的工具链: + +## 答案 + +rustup show + +## 选项 + +### A + +rustup toolchain show + +### B + +rustup default stable + +### C + +cargo +beta show + + \ No newline at end of file -- GitLab