代码拉取完成,页面将自动刷新
框架性能排行: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
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。