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 I would like to have a function like `default_to_index_file` for the Files service with specified `index_file`. This behavior allows SPA web pages with client-side routing, so it...

A-files
C-feature

## Expected Behavior Other actor could receive and process message from websocket actor whenever message is sent. ## Current Behavior I have a snippet of test code as below. This...

needs-investigation

`ResourceDef` leaks strings [on purpose](https://github.com/actix/actix-net/blob/router-v0.2.7/actix-router/src/resource.rs#L63), which makes LeakSanitizer output rather messy, since the strings aren't explicitly free'd. I understand why this is (and why it's not a problem for execution),...

A-router

It seems h2 has not supported http/2 push, yet (https://github.com/carllerche/h2/issues/185).

C-feature
d-hard

## Expected Behavior There should be some way of terminating ongoing HTTP/2 connections. ## Current Behavior Once an HTTP/2 connection has started, it will stay open even until closed by...

It's there a way to pass a request to the next handler? Something like ```rust async fn handler() -> impl Responder { if some_condition() { Response::Ok() } else { Next...

C-feature
A-web

come across these from a fork that seem cool: - https://docs.rs/actix-web-cute-codegen/0.1.0/actix_web_cute_codegen/attr.handler.html - https://docs.rs/actix-web-cute-codegen/0.1.0/actix_web_cute_codegen/attr.scope.html

good-first-issue
A-codegen
C-feature

To ensure that actix-web provides production-grade websockets, it should pass the crossbar autobahn test suite. https://github.com/crossbario/autobahn-testsuite Currently failing cases: - [ ] 3.1 - Issue #1579, PR #xx - [...

C-bug
websockets

The [websocket-autobahn example](https://github.com/actix/examples/tree/master/websocket-autobahn) fails test case 3.1 in the autobahn suite. Description: > Send small text message with **RSV = 1**. Expectation: > The connection is failed immediately (1002/protocol error),...

websockets

Right now `url_for` takes an iterator of `&str`s as input, and fills out the resource parameters in order. It'd be nice if there was a related function which took an...

C-improvement
A-web