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

#154 in Web programming

Download history 166340/week @ 2024-01-09 179088/week @ 2024-01-16 180171/week @ 2024-01-23 170680/week @ 2024-01-30 176864/week @ 2024-02-06 175825/week @ 2024-02-13 185718/week @ 2024-02-20 196034/week @ 2024-02-27 195893/week @ 2024-03-05 191468/week @ 2024-03-12 191421/week @ 2024-03-19 184617/week @ 2024-03-26 216669/week @ 2024-04-02 194414/week @ 2024-04-09 212689/week @ 2024-04-16 184738/week @ 2024-04-23

838,777 downloads per month
Used in 1,062 crates (149 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

~9–22MB
~409K SLoC