actix-web
actix-web copied to clipboard
Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust.
## Expected Behavior the payload should not be chunked if request has no body. ## Current Behavior awc make request body as chunked when it has empty stream. it works...
I have looked through `actix_multipart` documentation, and I couldn't find if there is a method to get the **field name** and **value** to be deserialized to a struct
## Expected Behavior `HttpServer::new` should support asynchronous application factories as the argument. ## Current Behavior ```rust HttpServer::new(move || async move { ... }); ``` fails. ## Possible Solution We either...
## PR Type PR_TYPE ## PR Checklist - [ ] Tests for the changes have been added / updated. - [ ] Documentation comments have been added / updated. -...
## Expected Behavior It should be possible to customize the logger with access to responses, in the same way we can customize it with access to requests. ## Current Behavior...
## Expected Behavior Structs should implement something along the lines of serde's `#[serde(flatten)]` in order to allow nested structs (for usage with extract path segment structs). Example: ```rust #[route("/{username}/{repository}/tree/{tree}/blob/{blob:.*}", method...
## PR Type Feature ## PR Checklist - [x] Tests for the changes have been added / updated. - [x] Documentation comments have been added / updated. - [x] A...
Having them as separate type with the same name can be confusing and I don't really see the reason why `web::Payload` is a newtype of `dev::Payload`. Making `web::Payload` a reexport...
e### Motivation Make it easier to support more complex and interconnected REST APIs by matching paths to the resource tree from inside a handler. ### Proposal Effectively we need a...
follow up from https://github.com/actix/actix-net/issues/392