85 releases (25 stable)

new 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

#1417 in Web programming

Download history 280097/week @ 2024-11-22 273711/week @ 2024-11-29 372176/week @ 2024-12-06 357236/week @ 2024-12-13 143215/week @ 2024-12-20 135039/week @ 2024-12-27 310162/week @ 2025-01-03 371703/week @ 2025-01-10 310297/week @ 2025-01-17 329859/week @ 2025-01-24 360590/week @ 2025-01-31 381296/week @ 2025-02-07 334558/week @ 2025-02-14 420951/week @ 2025-02-21 402792/week @ 2025-02-28 348595/week @ 2025-03-07

1,570,978 downloads per month
Used in 1,305 crates (161 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
~422K SLoC