85 releases (25 stable)

3.10.0 Mar 10, 2025
3.9.0 Aug 10, 2024
3.8.0 Jun 19, 2024
3.6.0 Feb 4, 2024
0.1.0-alpha.2 Mar 30, 2019

#4 in #async-future

Download history 162529/week @ 2024-12-29 336355/week @ 2025-01-05 363273/week @ 2025-01-12 302734/week @ 2025-01-19 332280/week @ 2025-01-26 374508/week @ 2025-02-02 373082/week @ 2025-02-09 345957/week @ 2025-02-16 417228/week @ 2025-02-23 401934/week @ 2025-03-02 436982/week @ 2025-03-09 440951/week @ 2025-03-16 432613/week @ 2025-03-23 403418/week @ 2025-03-30 431706/week @ 2025-04-06 388837/week @ 2025-04-13

1,683,042 downloads per month
Used in 1,333 crates (166 directly)

MIT/Apache

620KB
15K SLoC

actix-http

HTTP types and services for the Actix ecosystem.

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

Examples

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
}

Dependencies

~8–22MB
~423K SLoC