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.3.0)


[](https://deps.rs/crate/actix-web/4.3.0)
[](https://github.com/actix/actix-web/actions/workflows/ci.yml)
[](https://codecov.io/gh/actix/actix-web)

[](https://discord.gg/NWpN5mmg3x)
awc
HTTP clientDependencies:
toml
[dependencies]
actix-web = "4"
Code:
```rust use actix_web::{get, web, App, HttpServer, Responder};
async fn greet(name: web::Path
async fn main() -> std::io::Result<()> { HttpServer::new(|| { App::new().service(greet) }) .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 the following licenses, 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.