servant-rawm icon indicating copy to clipboard operation
servant-rawm copied to clipboard

Effectful Raw handler for Servant servers.

Results 5 servant-rawm issues
Sort by recently updated
recently updated
newest added

Hi, I'm trying to write a raw webhook endpoint due to [this complication in the `Accept` header](https://stackoverflow.com/questions/75226094/haskell-servant-how-to-deal-with-invalid-accept-header-or-ignore-it-completely). Here's what I've got: ```haskell data Env = Env {..} -- my application's...

There is some interest for shipping the `RawM` combinator as part of `servant`, see: https://github.com/haskell-servant/servant/issues/1544 https://github.com/haskell-servant/servant/pull/1551 This would, for example, allow native support in `servant-auth`, without the need for a...

Hello! :) I notice that the combined `servant-rawm-1.0.0.0` package ([here](https://www.stackage.org/package/servant-rawm)) is currently still the version in the Stackage snapshot (currently for both the recent LTS-17.x series and the nightly builds)....

help wanted

Recent versions of `stack` have trouble running doctests if `cabal-doctest` is not used. https://github.com/commercialhaskell/stackage/issues/5162 servant-rawm should switch to using `cabal-doctest`.

enhancement
help wanted
good first issue

Hi, and thank you for producing a really useful extension to servant I'm trying to use it with [servant-auth](https://github.com/haskell-servant/servant-auth#readme). I declare a route that uses both `RawM` and `Auth` in...