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.22019 年 3 月 30 日

#450Web 编程

Download history 206266/week @ 2024-05-03 223958/week @ 2024-05-10 230857/week @ 2024-05-17 229781/week @ 2024-05-24 251400/week @ 2024-05-31 253369/week @ 2024-06-07 234897/week @ 2024-06-14 242147/week @ 2024-06-21 232120/week @ 2024-06-28 227031/week @ 2024-07-05 243834/week @ 2024-07-12 253141/week @ 2024-07-19 255722/week @ 2024-07-26 246113/week @ 2024-08-02 282683/week @ 2024-08-09 232402/week @ 2024-08-16

1,066,120 每月下载量
用于 1,126 个 Crates (150 个直接使用)

MIT/Apache 许可证

620KB
15K SLoC

actix-http

Actix 生态系统中的 HTTP 类型和服务。

crates.io Documentation Version MIT or Apache 2.0 licensed
dependency status Download Chat on Discord

示例

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