1 Star 0 Fork 0

mpv945/rust-fist-app

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
说明文档 2.25 KB
一键复制 编辑 原始数据 按行查看 历史
mpv945 提交于 2021-09-12 13:48 . first commit
框架性能排行:https://www.techempower.com/benchmarks/
安装rust: https://www.cnblogs.com/pu369/p/15129732.html
Linux下的VScode的Rust开发调试环境搭建:
一、首先,需要安装最新版的 Rust 编译工具和 Visual Studio Code
Rust 编译工具:https://www.rust-lang.org/zh-CN/tools/install
Visual Studio Code:https://code.visualstudio.com/Download(也可以在ubuntu系统商店搜索)
二、配置 Visual Studio Code插件:CodeLLDB, Rust ,<crates> ......
三、新建一个rust项目rust-fist-app
cargo new rust-fist-app
cd rust-fist-app
cargo build
cargo run
四、vscode打开并设置debug
需要让vscode重新选择项目区域,就是刚建好的项目
点击左边debug工具,选择创建 launch.json 文件。选择环境为:LLDB
配置替换成
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"program": "${workspaceFolder}/target/debug/${workspaceFolderBasename}",
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
那debug就设置好了,后续按F5就有用了。
五、断点调试 : 文件 --》 首选项 --》设置 --》用户下选择【功能】 --》 调试 --》运行任何文件进行调试
六、项目打包运行
cargo clean 清空编译
cargo build 编译
cargo run 运行
各种rust框架使用:https://docs.rs/ 搜索框架名; 搜索框架的版本:https://crates.io/search?q=ntex ,点击复制,粘贴到项目的Cargo.toml文件的[dependencies]目录
grpc框架:https://github.com/tikv/grpc-rs
actix-web框架使用: https://actix-web.budshome.com/getting-started.html
# 编写测试代码:https://zhuanlan.zhihu.com/p/367098988
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mpv945/rust-fist-app.git
git@gitee.com:mpv945/rust-fist-app.git
mpv945
rust-fist-app
rust-fist-app
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385