前置依赖
装过Visual Studio或Visual Studio Build Tool 2015
下载Rust离线安装包
https://forge.rust-lang.org/other-installation-methods.html
写本文时使用的版本为1.37
https://static.rust-lang.org/dist/rust-1.37.0-x86_64-pc-windows-msvc.msi
安装时选Advanced
换下路径,如
E:\Rust stable MSVC 1.37\
接下来把RLS选项勾上
装好后到Gayhub下载配置模板节省头发。
https://github.com/RoteErde/RustVSCodeTemplate
打开VSCode,菜单 File > Open Folder
打开下载的模板目录
然后VSCode扩展搜Gayhub中提到的3个扩展
Rust (rls)
C/C++
Native Debug
装好后打开src/main.rs,修改为
fn main()
{
let mut a = 0;
a = 3;
a = 5;
a = 10;
println!("Hello, world!");
}
设置断点选项,菜单 File > Preferences > Setting中搜索break,勾选Allow setting breakpoints in any file
关掉Rustup
回到main.rs文件,按F9设置断点(也可能是我用了VS快键扩展),并且按Ctrl + Shift + B编译Build
没问题后按F5调试运行
F10单步观察变量a变化,成功,完美收工
最后是拉仓库
可以换成国内线路
到
C:\Users\你的用户名\.cargo
目录下创建config文件,没有扩展名,写入下面的内容,下载时能快一点。
[source.crates-io]
registry = "https://github.com/rust-lang/crates.io-index"
replace-with = 'ustc'
[source.ustc]
registry = "https://mirrors.ustc.edu.cn/crates.io-index"
========================================
经过1天时间发现,离线安装虽然能用,但是按F12无法查看Rust标准库源码。
因为暂时也没找到F12源码的下载地址,直接下载rustc的源码明显对应不上,晚些时间再补个在线安装版说明。
来源:oschina
链接:https://my.oschina.net/u/4330950/blog/3426640