actix-web/actix-http
dependabot[bot] ce5352b6f0
build(deps): update h2 requirement from 0.3.24 to 0.4.5
Updates the requirements on [h2](https://github.com/hyperium/h2) to permit the latest version.
- [Release notes](https://github.com/hyperium/h2/releases)
- [Changelog](https://github.com/hyperium/h2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/hyperium/h2/compare/v0.3.24...v0.4.5)

---
updated-dependencies:
- dependency-name: h2
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-05-20 01:05:57 +00:00
..
benches perf: remove unnecessary allocation when writing http dates (#3261) 2024-02-07 03:47:30 +00:00
examples chore: update rcgen to 0.13 2024-05-19 10:12:32 +01:00
src actix-http: Add rustls 0.23 (#3361) 2024-05-18 19:22:53 +01:00
tests chore: update rcgen to 0.13 2024-05-19 10:12:32 +01:00
CHANGES.md chore(actix-http): prepare release 3.7.0 2024-05-19 10:14:30 +01:00
Cargo.toml build(deps): update h2 requirement from 0.3.24 to 0.4.5 2024-05-20 01:05:57 +00: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(actix-http): prepare release 3.7.0 2024-05-19 10:14:30 +01:00

README.md

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
}