rouille icon indicating copy to clipboard operation
rouille copied to clipboard

Web framework in Rust

Results 71 rouille issues
Sort by recently updated
recently updated
newest added

running tests on ios produced this failure, running in a docker container did not error ```---- content_encoding::tests::gzip_encoding stdout ---- thread 'content_encoding::tests::gzip_encoding' panicked at 'assertion failed: `(left == right)` left: `[31,...

CI appears to be failing on all branches when using rust version 1.51 example: https://github.com/tomaka/rouille/runs/6828755515?check_suite_focus=true this is the issue https://github.com/rust-lang/rust/pull/81110 it is fixed in 1.52, however 1.52 requires cargo-features =...

Does `rouille` support this: https://rocket.rs/v0.5-rc/guide/requests/#multiple-segments

`get_param("reverse")` does not return `Some("")` as expected for query string `?reverse` The expected behavior for URLParams is to treat params with no `=` in them as if the same as...

Fixes https://github.com/tomaka/rouille/issues/258 Adds new testing to cover related edge cases

Hello @tomaka @bradfier, I added two simple macros, in similar fashion as `start_server` but with an extra local SSL context, so we can deploy an HTTPS server easily

In the case where you are talking to a browser, the browser-side has no API for sending pings to the server, but will usually send pongs in reply to pings...

I am wondering if there is a close method for rouille::websocket::Websocket struct to close a websocket from server side.