actix-web
actix-web copied to clipboard
Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust.
## PR Type Feature ## PR Checklist - [x] Tests for the changes have been added / updated. - [x] Documentation comments have been added / updated. - [x] A...
It would be nice if there was a feature in actix-files that allows reading static files into memory at startup and serving them from there, instead of reading them from...
## Expected Behavior The `experimental-io-uring` feature on actix-files should work on kernels with io-uring support. ## Current Behavior Enabling the feature causes a panic when serving a named file: ```...
This was requested a few times already (the most recent one I found is #1159) but I want to elaborate a little more on this issue. I started using actix-web...
## PR Type Bug Fix ## PR Checklist - [ ] Tests for the changes have been added / updated. - [x] Documentation comments have been added / updated. -...
## Expected Behavior The creation of the new awc client should work as it does on Ubuntu or there should be an error. ## Current Behavior The first time an...
## Expected Behavior The actix documentation currently mentions: "Middleware is registered for each App, scope, or Resource and executed in the opposite order as registration" When I read that phrase...
## Expected Behavior I should have a way to create route/service guards which use functions like `tokio::fs::canonicalize` in a guard. ## Current Behavior I have to reimplement part of the...
## Expected Behavior You connect to an https / wss endpoint with awc to start a websocket connection. When it is connected, you do websocket-y things. ## Current Behavior The...
## Expected Behavior - Calling `HttpServer::bind` on an `(address, port)` that another process is bound to always results in an `Err`. - Calling `HttpServer::run` on an `HttpServer` that _does_ (somehow)...