warp icon indicating copy to clipboard operation
warp copied to clipboard

A super-easy, composable, web server framework for warp speeds.

Results 164 warp issues
Sort by recently updated
recently updated
newest added

I just tried to rebase #909 and CI failed. I tested again with `nightly-2022-09-27` and the tests passed, but the master branch fails `cargo test` with current nightly. Seems some...

bug

**Is your feature request related to a problem? Please describe.** i keep geting errors that `error converting to string` with no context as to why it couldent. **Describe the solution...

feature

**Version** warp = {version = "0.3.3", features = ["tls"]} **Platform** macOS 12.5 **Description** I am trying to setup dual TLS for warp, however the TLS handshake fails on client authorization....

bug

You use it like this: ```rust use warp::Filter; let auth = warp::auth::basic() .realm("access") .allow("user", "1234"); let route = warp::any() .map(warp::reply) .with(auth); ``` #751 also implements basic authentication. Contrary to theirs,...

This PR adds methods to `warp::filter::trace::Info` and `warp::filter::log::Info` to view the request's query string.

**Is your feature request related to a problem? Please describe.** Writing macros to `Filter::or` together several filters is harder than it needs to be, as you must use recursion or...

feature

I'm putting together an API with warp, and I'm trying to make it so that certain data can be requested cross-origin via POST. However, as soon as I add `.and(warp::body::json())`...

**Version** v0.3.7 **Platform** 64-bit Windows 10 **Description** When I use a Chromium based browser, the graceful shutdown hangs. The minimal reproducible code is as follows: ``` use std::net::Ipv4Addr; use tokio::{signal::ctrl_c,...

bug

This PR adds the option to provide an explicit charset in a Server-Side Event reply. While [according to Mozilla](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#event_stream_format) every event should be processed as utf-8 by default, some clients...