【rust实战】rust博客系统2_使用wrap启动rust项目服务

如何创建一个使用warp框架的rust项目1.使用cargo 创建项目 
  cargo new blog

2.添加warp依赖
  1.cd blog
  2.编辑
Cargo.toml文件  添加warp 和 tokio 作为依赖项
    在[dependencies]中添加 
    [package]
    name = "blog"
    version = "0.1.0"
    edition = "2021"

    [dependencies]
    warp = "0.3"
    tokio = {version = "1",feature = [full] }

3.在src的main中 写启动服务器的代码
  use warp::Filter
 
  #[tokio::main]
  async fn main() {
      let hello = warp::path::end().map(|| "hello,warp")
      //启动服务器
      wapr.
serve(hello).run(([127.0.0.1],8080)).await
  }
  
4.运行
  
cargo run 运行rust项目,然后浏览器输入 127.0.0.1:8080 可以看到输出内容
warp::path::end()  用于匹配根路径 /
.map(|| "hello,warp") 对前面的过滤结果进行map操作,map方法接收一个闭包,该闭包在匹配导路径时执行,并返回一个值
||"hello,warp"  无参数闭包,返回字符串 hello warp
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

simper_zxb

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值