【rust实战】rust博客系统1_项目技术栈

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;
}
上一篇:同城搭子怎么找?靠谱同城找搭子交友攻略分享!


下一篇:Ubuntu中快速从Google Drive中批量下载文件