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

#1264 in Web programming

Download history 284872/week @ 2024-08-20 264733/week @ 2024-08-27 299304/week @ 2024-09-03 304979/week @ 2024-09-10 287354/week @ 2024-09-17 329454/week @ 2024-09-24 322894/week @ 2024-10-01 324742/week @ 2024-10-08 351914/week @ 2024-10-15 367352/week @ 2024-10-22 349135/week @ 2024-10-29 345551/week @ 2024-11-05 352811/week @ 2024-11-12 336824/week @ 2024-11-19 250187/week @ 2024-11-26 318026/week @ 2024-12-03

1,320,650 downloads per month
Used in 1,231 crates (159 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
~428K SLoC