Package maintainers and Hackage trustees are allowed to edit certain bits
of package metadata after a release, without uploading a new tarball.
Note that the tarball itself is never changed, just the metadata that is
stored separately. For more information about metadata revisions, please
refer to the
Hackage Metadata Revisions FAQ.
| No. |
Time |
User |
SHA256 |
| -r3 |
2017-12-10T21:00:37Z |
phadej |
0e1b4b09d8e9c9bdcc057995203e8a892adea36ddc051a1cc07df52f09243aec
|
|
|
| -r2 |
2016-07-05T09:30:46Z |
phadej |
bcdced183c93f695da9fea9a6ca7aea5803f9f877bdfff73eb779e6e5c7603bb
|
|
|
| -r1 |
2015-05-11T08:47:58Z |
AlpMestanogullari |
9a7ca5856ef66a4345f4732e7ca5680f55502b899bbe1e2f1397b0e55d33ad37
|
|
Changed description
from This library lets you derive automatically Haskell functions that
let you query each endpoint of a <http://hackage.haskell.org/package/servant servant> webservice.
Example below.
> type MyApi = "books" :> Get [Book] -- GET /books
> :<|> "books" :> ReqBody Book :> Post Book -- POST /books
>
> myApi :: Proxy MyApi
> myApi = Proxy
>
> getAllBooks :: BaseUrl -> EitherT String IO [Book]
> postNewBook :: Book -> BaseUrl -> EitherT String IO Book
> (getAllBooks :<|> postNewBook) = client myApi
<https://github.com/haskell-servant/servant/blob/master/servant-client/CHANGELOG.md CHANGELOG>
to This library lets you derive automatically Haskell functions that
let you query each endpoint of a <http://hackage.haskell.org/package/servant servant> webservice.
See <http://haskell-servant.github.io/tutorial/client.html the client section of the tutorial>.
<https://github.com/haskell-servant/servant/blob/master/servant-client/CHANGELOG.md CHANGELOG>
|
| -r0 |
2015-05-10T12:24:59Z |
jkarni |
9bfbd809df8cd79000a9201fc5d603cc79e5782a7656a6ccbb935c678e707303
|
|
|