Actix web
Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust.
Under Other
By actix
Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust.
Under Other
By actix
Actix Web
Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust
[](https://crates.io/crates/actix-web)
[](https://docs.rs/actix-web/4.0.0-beta.9)
[](https://blog.rust-lang.org/2020/03/12/Rust-1.51.html)

[](https://deps.rs/crate/actix-web/4.0.0-beta.9)
[](https://github.com/actix/actix-web/actions)
[](https://codecov.io/gh/actix/actix-web)

[](https://discord.gg/NWpN5mmg3x)
Features
Dependencies:
toml
[dependencies]
actix-web = "3"
Code:
```rust
use actix_web::{get, web, App, HttpServer, Responder};
async fn index(web::Path((id, name)): web::Path<(u32, String)>) -> impl Responder {
format!("Hello {}! id:{}", name, id)
}
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 repo is organized under the terms of the Contributor Covenant.
The Actix team promises to intervene to uphold that code of conduct.