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

## Expected Behavior When a route string can be matched by one (or more) route macro paths (but zero method matches) then a 405 should be returned. ## Current Behavior...

C-improvement
A-codegen

When implementing middleware I discovered various things which seemed confusing: When we call the underlying service `self.service.call(req)` it returns a result: As far as I can tell this service call...

C-docs
A-web

I think it's currently _possible_, but it should optimally be easier, and I don't know if I can make sure that all holes are covered. The goal is that all...

C-improvement
A-web

Hello, and thank you very much for this crate. Here is the gist for a reproductible example: [https://gist.github.com/allencamal/cfe62dda9fc8132ba6707d5771cac7f1](https://gist.github.com/allencamal/cfe62dda9fc8132ba6707d5771cac7f1) ## Expected Behavior It should be possible to curl the `failing` endpoint....

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

B-semver-major
A-codegen

Hello, I've been using actix-web for a while and it's working very well! There is one little thing that's been bothering me, though. When I write services with actix-web I...

C-improvement
good-first-issue
A-codegen

With new Actix-web `4.0.x` with https ( http2 ) our devices with low bandwidth connection can not download 20-30MB binary data from `acitx_web` server. Devices reported error like: `broken pipe`...

C-bug
A-http

## Example test case ``` #[get("/foo")] async fn foo() -> impl Responder { "foo\r\n" } ``` ## Current Behavior ``` $ curl -v http://localhost:8080/foo ... * Trying 127.0.0.1... * TCP_NODELAY...

C-improvement
help-wanted
A-web

* Actix Web Version: v4.0-beta.14

A-web
RFC / Proposal

it doesn't currently look like there is a good way to get a list of registered services/endpoints. such functionality would be useful for creating index sites that list all endpoints...

help-wanted
C-feature
A-web
d-hard