actix-web icon indicating copy to clipboard operation
actix-web copied to clipboard

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

Results 284 actix-web issues
Sort by recently updated
recently updated
newest added

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

B-semver-major
A-http
A-web

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

C-feature
A-router
A-web

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

C-bug
A-http

## PR Checklist - [x] Tests for the changes have been added / updated. - [x] Documentation comments have been added / updated. - [x] A changelog entry has been...

B-semver-minor
A-web

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

B-semver-minor
A-web

## PR Type Fix ## PR Checklist - [x] Tests for the changes have been added / updated. - [x] ~Documentation comments have been added / updated.~ - [x] A...

A-http
B-semver-norelease

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

C-bug
needs-investigation
A-http

## PR Type Feature ## PR Checklist - [ ] Tests for the changes have been added / updated. - [ ] Documentation comments have been added / updated. -...

B-semver-minor
A-web

## PR Type Feature ## PR Checklist - [x] Tests for the changes have been added / updated. - [x] Documentation comments have been added / updated. - [x] A...

A-http
B-semver-minor
A-web

## 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...

C-improvement
A-http
A-web