记录Rust Hello Word

1.安装Rust
官网下载直接点击安装即可

2.在Goland上安装Rust插件
rust plugins上下载对应Goland版本的Rust插件。笔者的Goland2019.1
image

根据如下步骤安装即可,Install Plugin from Disk指定上一步下载的压缩文件。安装好后重启Goland
image
image
3.将环境变量%USERPROFILE%\.cargo\bin添加到Path
4.使用Goland新建一个Rust项目
image

5.编译执行Rust代码
image


过程中遇到的问题:
缺少一些库:advapi32.lib,userenv.lib
解决方法:直接安装一个visual studio community 2019,问题解决
image

Ref:
1.https://github.com/rust-lang/rust/issues/43039