2017-12-08 23:21:00 +01:00
|
|
|
name: cookbook-structuring-apis
|
|
|
|
version: 0.1
|
|
|
|
synopsis: Example that shows how APIs can be structured
|
2019-03-02 10:08:03 +01:00
|
|
|
homepage: http://docs.servant.dev/
|
2017-12-08 23:21:00 +01:00
|
|
|
license: BSD3
|
|
|
|
license-file: ../../../servant/LICENSE
|
|
|
|
author: Servant Contributors
|
|
|
|
maintainer: haskell-servant-maintainers@googlegroups.com
|
|
|
|
build-type: Simple
|
|
|
|
cabal-version: >=1.10
|
2020-01-21 15:52:20 +01:00
|
|
|
tested-with: GHC==8.4.4, GHC==8.6.5, GHC==8.8.2
|
2017-12-08 23:21:00 +01:00
|
|
|
|
|
|
|
executable cookbook-structuring-apis
|
|
|
|
main-is: StructuringApis.lhs
|
|
|
|
build-depends: base == 4.*
|
2017-12-27 01:33:12 +01:00
|
|
|
, aeson >= 1.2
|
2017-12-08 23:21:00 +01:00
|
|
|
, servant
|
|
|
|
, servant-server
|
2017-12-27 01:33:12 +01:00
|
|
|
, warp >= 3.2
|
2017-12-08 23:21:00 +01:00
|
|
|
, markdown-unlit >= 0.4
|
|
|
|
default-language: Haskell2010
|
|
|
|
ghc-options: -Wall -pgmL markdown-unlit
|
|
|
|
build-tool-depends: markdown-unlit:markdown-unlit
|