warp
warp copied to clipboard
A super-easy, composable, web server framework for warp speeds.
At this point in time, there isn't anyway to compose filters dynamically. You can decide to append dynamic async code to the end of a filter chain through `.and_then()`, but...
updates `filters::param2`: - changes name to `param_with_err`. This still doesn't quite feel right to me, so let me know if there's other suggestions. - returns `Rejection` directly from `FromStr` `Err`,...
- Provide a try_bind_with_graceful_shutdown method to TlsServer in order to have fallible semantics rather than panics when a TLS configuration fails. - Add panic warnings to the docs of each...
Resolves issue #724 Still learning Rust, so any feedback would be much appreciated.
Hey, I need a filter to handle HTTP basic authentication. I saw that there were efforts to implement this in #62, but without any results. This is a minimal implementation...
Allows logging at a certain level without using a complete `custom` log filter. The name `with_level` could of course be changed, for I don't know what else would fit best...
**Is your feature request related to a problem? Please describe.** I want to redirect all calls for a specific path from http to https. For this I cannot read the...
**Version** warp v0.3.1 **Platform** Darwin Kernel Version 20.3.0; root:xnu-7195.81.3~1/RELEASE_X86_64 x86_64 **Description** (I'm brand new to warp so please excuse any mistakes.) There are at least a [few places](https://docs.rs/warp/0.3.1/warp/filters/path/fn.path.html#note) in [the...
**Description** In the docs it states: ```rust // If you want to allow any route use warp::Filter; let cors = warp::cors() .allow_any_origin(); ``` Trying this with a simple websocket server...
So when trying to pass a filter as an argument to a function I was struggling to get the trait bounds to work generically going off the compiler error messages...