Go to file
Santiago Fraire 206f8ae62c fix(actix-http): encode correctly camel case header with n+2 hyphens
Closes #2674
2022-03-05 16:48:33 +01:00
.cargo
.github
actix-files prepare actix-files release 0.6.0-beta.14 2022-01-14 20:01:11 +00:00
actix-http fix(actix-http): encode correctly camel case header with n+2 hyphens 2022-03-05 16:48:33 +01:00
actix-http-test prepare actix-web release 4.0.0-beta.20 2022-01-14 20:00:26 +00:00
actix-multipart prepare actix-web release 4.0.0-beta.20 2022-01-14 20:00:26 +00:00
actix-router prepare actix-router release 0.5.0-rc.1 2022-01-14 19:59:36 +00:00
actix-test prepare actix-web release 4.0.0-beta.20 2022-01-14 20:00:26 +00:00
actix-web-actors prepare actix-web release 4.0.0-beta.20 2022-01-14 20:00:26 +00:00
actix-web-codegen prepare actix-web release 4.0.0-beta.20 2022-01-14 20:00:26 +00:00
awc migrate to `brotli` crate (#2538) 2022-01-15 14:03:16 +00:00
benches
docs/graphs prepare actix-router release 0.5.0-beta.4 2022-01-04 15:33:44 +00:00
examples rename on-connect example 2022-01-04 12:54:20 +00:00
scripts remove readme msrv link 2022-01-05 04:24:40 +00:00
src prepare actix-router release 0.5.0-rc.1 2022-01-14 19:59:36 +00:00
tests migrate to `brotli` crate (#2538) 2022-01-15 14:03:16 +00:00
.gitignore
CHANGES.md prepare actix-files release 0.6.0-beta.14 2022-01-14 20:01:11 +00:00
CODE_OF_CONDUCT.md
Cargo.toml migrate to `brotli` crate (#2538) 2022-01-15 14:03:16 +00:00
LICENSE-APACHE
LICENSE-MIT
MIGRATION.md
README.md prepare actix-web release 4.0.0-beta.20 2022-01-14 20:00:26 +00:00
clippy.toml
codecov.yml
rustfmt.toml

README.md

Actix Web

Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust

crates.io Documentation MSRV MIT or Apache 2.0 licensed Dependency Status
CI codecov downloads Chat on Discord

Features

  • Supports HTTP/1.x and HTTP/2
  • Streaming and pipelining
  • Keep-alive and slow requests handling
  • Client/server WebSockets support
  • Transparent content compression/decompression (br, gzip, deflate, zstd)
  • Powerful request routing
  • Multipart streams
  • Static assets
  • SSL support using OpenSSL or Rustls
  • Middlewares (Logger, Session, CORS, etc)
  • Includes an async HTTP client
  • Runs on stable Rust 1.54+

Documentation

Example

Dependencies:

[dependencies]
actix-web = "3"

Code:

use actix_web::{get, web, App, HttpServer, Responder};

#[get("/{id}/{name}/index.html")]
async fn index(web::Path((id, name)): web::Path<(u32, String)>) -> impl Responder {
    format!("Hello {}! id:{}", name, id)
}

#[actix_web::main]
async fn main() -> std::io::Result<()> {
    HttpServer::new(|| App::new().service(index))
        .bind("127.0.0.1:8080")?
        .run()
        .await
}

More examples

You may consider checking out this directory for more examples.

Benchmarks

One of the fastest web frameworks available according to the TechEmpower Framework Benchmark.

License

This project is licensed under either of

at your option.

Code of Conduct

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.