81 releases (21 stable)

3.6.0 Feb 4, 2024
3.5.1 Dec 25, 2023
3.4.0 Aug 29, 2023
3.3.1 Mar 2, 2023
0.1.0-alpha.2 Mar 30, 2019

#1 in #http-framework

Download history 82639/week @ 2023-12-23 127260/week @ 2023-12-30 171120/week @ 2024-01-06 172898/week @ 2024-01-13 181029/week @ 2024-01-20 170275/week @ 2024-01-27 172995/week @ 2024-02-03 181613/week @ 2024-02-10 176470/week @ 2024-02-17 193475/week @ 2024-02-24 198336/week @ 2024-03-02 192310/week @ 2024-03-09 191034/week @ 2024-03-16 190427/week @ 2024-03-23 209581/week @ 2024-03-30 164303/week @ 2024-04-06

786,648 downloads per month
Used in 1,053 crates (148 directly)

MIT/Apache

605KB
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

Documentation & Resources

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

~10–24MB
~413K SLoC