84 个版本 (24 个稳定版)
3.9.0 | 2024 年 8 月 10 日 |
---|---|
3.8.0 | 2024 年 6 月 19 日 |
3.7.0 | 2024 年 5 月 19 日 |
3.6.0 | 2024 年 2 月 4 日 |
0.1.0-alpha.2 | 2019 年 3 月 30 日 |
#450 在 Web 编程
1,066,120 每月下载量
用于 1,126 个 Crates (150 个直接使用)
620KB
15K SLoC
actix-http
Actix 生态系统中的 HTTP 类型和服务。
示例
use std::{env, io};
use actix_http::{HttpService, Response};
use actix_server::Server;
use futures_util::future;
use http::header::HeaderValue;
use tracing::info;
#[actix_rt::main]
async fn main() -> io::Result<()> {
env::set_var("RUST_LOG", "hello_world=info");
env_logger::init();
Server::build()
.bind("hello-world", "127.0.0.1:8080", || {
HttpService::build()
.client_timeout(1000)
.client_disconnect(1000)
.finish(|_req| {
info!("{:?}", _req);
let mut res = Response::Ok();
res.header("x-head", HeaderValue::from_static("dummy value!"));
future::ok::<_, ()>(res.body("Hello world!"))
})
.tcp()
})?
.run()
.await
}
依赖项
~9–23MB
~425K SLoC