-
Would you consider a pull request along these lines?:
``` haskell
data URI
{ ...
, uriPath :: Path
...
}
newtype Path = Path [Segment]
data Segment = Segment ByteString [MatrixParam]
data Mat…
-
#### Bug Report Checklist
- [x] Have you provided a full/minimal spec to reproduce the issue?
- [x] Have you validated the input using an OpenAPI validator
- [x] What's the version of OpenAPI Gen…
-
@fisx @arianvp @dmjio
-
I am using the logging method outlined in this post
https://github.com/algas/haskell-servant-cookbook/blob/master/doc/Logger.md
Is there any way Servant can be made to include the details of the…
-
I have some notes lying around, wanted to add a section but maybe somebody beats me:
- new folder
- add doc/cookbook/cabal.project
- add doc/cookbook/index.rst
- add folder cabal file + lhs
- f…
-
At the time of writing, the state of `servant-auth` has a margin of improvement when it comes to both design, security and supported authentication schemes. I would like to take the time with industri…
-
Hello,
I've just tried compiling servant-multipart with GHC 9.6.3 and am hitting this issue:
```
servant-multipart-client> build
servant-multipart-client> Preprocessing executable 'server' for s…
-
@fisx
@soenkehahn
A few people I've spoken to didn't realize you could do a versioned API or have a partial client implementation in Servant. I didn't either, but I took a look at it with @fisx and…
-
[BasicAuth](https://hackage.haskell.org/package/servant-0.18.3/docs/Servant-API-BasicAuth.html#t:BasicAuth) is defined in the `servant` package, so I think it makes sense to have `instance HasOpenApi …
-
Snap request bodies are `InputStream ByteString` (or similar) io-streams, and can't be consumed more than once (same issue as for the warp servant server: https://github.com/haskell-servant/servant/is…