actix-web
actix-web copied to clipboard
Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust.
We use actix-web to handle some large file download, currently ResponseBuilder can only provide streaming() interface which requires user to implment future::stream::Stream interface. (https://docs.rs/actix-web/3.0.2/actix_web/dev/struct.HttpResponseBuilder.html#method.streaming) I think a trait simular to...
Suppose we have two routes that may match the same path: ```rust #[actix_web::get("/widgets/{id}")] async fn get_widget(...) { ... } #[actix_web::post("/widgets/action")] async fn widget_action(...) { ... } ``` and they are...
## PR Type Documentation ## PR Checklist - [x] Tests for the changes have been added / updated. - [x] Documentation comments have been added / updated. - [x] A...
Updates the requirements on [brotli](https://github.com/dropbox/rust-brotli) to permit the latest version. Commits 2c601f4 Release 5.0.0 with ffi-api disabled by default to avoid ODR issues 6c4cd18 Make hex numbers more readable 2ff7b21...
## PR Type Bug Fix ## PR Checklist - [x] Tests for the changes have been added / updated. - [x] Documentation comments have been added / updated. - [x]...
## PR Type Feature ## PR Checklist - [x] Tests for the changes have been added / updated. - [x] Documentation comments have been added / updated. - [x] A...
## PR Type Update dependency PR_TYPE ## PR Checklist - [x] Tests for the changes have been added / updated. - [x] Documentation comments have been added / updated. -...
## PR Type Bug Fix ## PR Checklist - [x] Tests for the changes have been added / updated. - [N/A] Documentation comments have been added / updated. - [x]...
## PR Type: [Supoort] This PR provides support to log the name of current thread which is handling the request. ## PR Checklist - [ ] Tests for the changes...
Updates the requirements on [rcgen](https://github.com/rustls/rcgen) to permit the latest version. Commits 3daef5e docs: update CHANGELOG for 0.13.0 17032f0 Support all PrivateKeyDer formats when using aws-lc-rs feature 8974b7f tests: add simple...