1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-19 16:58:14 +00:00
actix-web/actix-http
2023-08-01 19:33:32 +01:00
..
benches add compression_responses benchmark (#3001) 2023-03-12 15:32:07 +00:00
examples apply standard formatting 2023-07-17 02:38:12 +01:00
src add payload to_bytes helpers (#3083) 2023-07-22 02:02:29 +01:00
tests chore: address clippy warnings 2023-07-20 11:42:20 +01:00
Cargo.toml update MSRV to 1.65 (#3059) 2023-07-02 01:09:15 +01:00
CHANGES.md chore: update msrv to 1.68 (#3094) 2023-08-01 19:33:32 +01:00
LICENSE-APACHE prepare release beta 4 (#1659) 2020-09-09 22:14:11 +01:00
LICENSE-MIT prepare release beta 4 (#1659) 2020-09-09 22:14:11 +01:00
README.md chore: update msrv to 1.68 (#3094) 2023-08-01 19:33:32 +01:00

actix-http

HTTP primitives for the Actix ecosystem.

crates.io Documentation Version MIT or Apache 2.0 licensed
dependency status Download Chat on Discord

Documentation & Resources

Example

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
}