1.在Cargo.toml中添加依赖
[dependencies]
warp = "0.3" # warp版本
2.用warp开启服务器
use warp::Filter
#[tokio::main]
async fn main() {
// 定义路由
let hello = warp::path!("hello" / String)
.map(|name| format!("Hello, {}!",name ))
//启动服务器
warp::serve(hello)
.run(([127.0.0.1], 3030))
.await;
}