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
1,433,439 downloads per month
Used in 1,215 crates
(156 directly)
620KB
15K
SLoC
actix-http
HTTP types and services for the Actix ecosystem.
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