84 releases (24 stable)

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

#970 in Web programming

Download history 250767/week @ 2024-07-29 248245/week @ 2024-08-05 284627/week @ 2024-08-12 285940/week @ 2024-08-19 283247/week @ 2024-08-26 271948/week @ 2024-09-02 315537/week @ 2024-09-09 272838/week @ 2024-09-16 333163/week @ 2024-09-23 320928/week @ 2024-09-30 337316/week @ 2024-10-07 336309/week @ 2024-10-14 361859/week @ 2024-10-21 356623/week @ 2024-10-28 347464/week @ 2024-11-04 354844/week @ 2024-11-11

1,433,439 downloads per month
Used in 1,215 crates (156 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

~9–22MB
~425K SLoC