actix-web
actix-web copied to clipboard
Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust.
Depends on https://github.com/actix/actix-net/pull/508 ## PR Type Updates http crate ## PR Checklist - [ ] Tests for the changes have been added / updated. - [x] Documentation comments have been...
I proposed this idea in to handle cases where trailing slashes are relevant. Basically, allow defining a route with a pattern like "/some/path/?" that matches both "/some/path" and "/some/path/". I...
If a post request **with a large body** gets error (413 or 404 or any other) as a response, the connection doesn't close, but hangs in `CLOSE-WAIT` state ## Expected...
## PR Checklist - [x] Tests for the changes have been added / updated. - [x] Documentation comments have been added / updated. - [x] A changelog entry has been...
Hi, This is yet a preliminary change to just collect feedback: So this PR add a new feature on the logger middleware, to limit the logging to a range of...
## PR Type Fix ## PR Checklist - [x] Tests for the changes have been added / updated. - [x] ~Documentation comments have been added / updated.~ - [x] A...
## Steps to Reproduce (for bugs) ### code ```rust use actix_web::{post, web, App, HttpServer}; use serde::Deserialize; use log::warn; #[derive(Deserialize)] struct Info { name: String, } #[post("/")] async fn index(web::Form(form): web::Form)...
## PR Type Feature ## PR Checklist - [ ] Tests for the changes have been added / updated. - [ ] Documentation comments have been added / updated. -...
## PR Type Feature ## PR Checklist - [x] Tests for the changes have been added / updated. - [x] Documentation comments have been added / updated. - [x] A...
## Expected Behavior Although the default compression levels are sane, some users might want to adjust it to better fit their needs. Being able to set the compression levels gives...