Actix web is a powerful, pragmatic, and extremely fast web framework for Rust
[](https://crates.io/crates/actix-web)
[](https://docs.rs/actix-web)
[](https://blog.rust-lang.org/2020/02/27/Rust-1.41.1.html)

[](https://travis-ci.org/actix/actix-web)
[](https://codecov.io/gh/actix/actix-web)
[](https://crates.io/crates/actix-web)
[](https://gitter.im/actix/actix?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Dependencies:
toml
[dependencies]
actix-web = "3"
Code:
```rust use actix_web::{get, web, App, HttpServer, Responder};
async fn index(info: web::Path<(u32, String)>) -> impl Responder { format!("Hello {}! id:{}", info.1, info.0) }
async fn main() -> std::io::Result<()> { HttpServer::new(|| App::new().service(index)) .bind("127.0.0.1:8080")? .run() .await } ```
You may consider checking out this directory for more examples.
One of the fastest web frameworks available according to the TechEmpower Framework Benchmark.
This project is licensed under either of
at your option.
Contribution to the actix-web crate is organized under the terms of the Contributor Covenant, the maintainers of Actix web, promises to intervene to uphold that code of conduct.