actix-web
actix-web copied to clipboard
Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust.
As per title, the `CloseReason` does not implement serde::Serialize and Deserialize. Why is this? https://github.com/actix/actix-web/blob/9656383646463e95d33d17458cc4b02ba5930f2c/actix-http/src/ws/proto.rs#L197-L205
Strange behavior using different CAs on server and client and verify_callback with openssl and http2
Dear All, I'm trying to implement a toy application that exposes a restAPI over https using openssl backend. The application requires but accepts any client certificate (SslVerifyMode::PEER flag), uses a...
## PR Type Other? ## PR Checklist - [x] Tests for the changes have been added / updated. - [x] ~Documentation comments have been added / updated~ - [x] A...
There is no ability to test multipart forms through the library, even the actix_multipart::test:create_form_data_payload_and_headers is very limited and only allows to build a single field. At the end, testing a...
Recording to the issue https://github.com/actix/actix-web/issues/3152, i use awc as client to request another actix-web server, in some case the server got error and return 401 or 500, then the client...
Hello, I wanted to ask if it would be possible to change the reference-counting pointer in actix_multipart::Multipart from Rc to Arc. I would like to use actix_multipart::Multipart in a multithreaded...
Looking like [this](https://github.com/actix/actix-web/issues/3102) issue ## Expected Behavior The request should be processed by actix_web and output something ## Current Behavior If I run a POST request with an empty body,...
## Expected Behavior 53.1MB test file should be accepted as an upload by the [example with a 100MB limit](https://docs.rs/actix-multipart/latest/actix_multipart/index.html#examples), like the 8MB test file was and like it was when...
## Steps to Reproduce (for bugs) I have 2 kinds of query, using this enum: ```rust #[derive(Deserialize, Debug)] #[serde(untagged)] pub enum Query { FlowTag { flow: i32, tag: String },...