文章目录
-
- [关于 Wrap](#关于 Wrap)
-
- [Warp & Rocket](#Warp & Rocket)
- [Warp 结合使用的第三方库推荐](#Warp 结合使用的第三方库推荐)
- 使用
关于 Wrap
A super-easy, composable, web server framework for warp speeds.
类似于 Python flask 的web 服务框架
- github :https://github.com/seanmonstar/warp
- 介绍:https://seanmonstar.com/blog/warp/
- 文档:https://docs.rs/warp/latest/warp/index.html
视频教程 : 原子之音 https://www.bilibili.com/video/BV1a34y187XR/
Warp & Rocket
Warp
- 性能更好
- 官网就是GitHub
- 像flask 微框架
- 可以搭配不同的第三方库
Rocket
- 性能相比Warp要差一点(性能也比较强大)
- 易学、文档完善
- 像django有一套成熟的解决方案
- 不太需要第三方库
Warp 结合使用的第三方库推荐
- log libs
- log
- pretty_env_logger
- db libs
- sqlx(异步)
- json
- serde
- serde_json
- serde_derive
使用
1、创建项目
shell
cargo new basic_wrap
2、Cargo.toml
添加:
rust
tokio = { version = "1", features = ["full"] }
warp = "0.3"
3、main.rs
代码修改为:
rust
use warp::Filter;
#[tokio::main]
async fn main() {
// GET /hello/warp => 200 OK with body "Hello, warp!"
let hello = warp::path!("hello" / String)
.map(|name| format!("Hello, {}!", name));
warp::serve(hello)
.run(([127, 0, 0, 1], 3030))
.await;
}
4、运行
rust
cargo update
cargo run
5、访问: http://127.0.0.1:3030/hello/rust
页面会显示
rust
Hello, rust!
伊织 2024-05-09(四)