2017-12-02 00:00:27 +01:00
|
|
|
name: cookbook-basic-auth
|
|
|
|
version: 0.1
|
|
|
|
synopsis: Basic Authentication cookbook example
|
|
|
|
homepage: http://haskell-servant.readthedocs.org/
|
|
|
|
license: BSD3
|
|
|
|
license-file: ../../../servant/LICENSE
|
|
|
|
author: Servant Contributors
|
|
|
|
maintainer: haskell-servant-maintainers@googlegroups.com
|
|
|
|
build-type: Simple
|
|
|
|
cabal-version: >=1.10
|
|
|
|
|
|
|
|
executable cookbook-basic-auth
|
2017-12-08 00:33:37 +01:00
|
|
|
if impl(ghc < 7.10.1)
|
|
|
|
buildable: False
|
2017-12-02 00:00:27 +01:00
|
|
|
main-is: BasicAuth.lhs
|
|
|
|
build-depends: base == 4.*
|
2017-12-27 01:33:12 +01:00
|
|
|
, text >= 1.2
|
|
|
|
, aeson >= 1.2
|
|
|
|
, containers >= 0.5
|
2017-12-02 00:00:27 +01:00
|
|
|
, servant
|
|
|
|
, servant-client
|
|
|
|
, servant-server
|
2017-12-27 01:33:12 +01:00
|
|
|
, warp >= 3.2
|
|
|
|
, wai >= 3.2
|
|
|
|
, http-types >= 0.10
|
2017-12-02 00:00:27 +01:00
|
|
|
, markdown-unlit >= 0.4
|
2017-12-27 01:33:12 +01:00
|
|
|
, http-client >= 0.5
|
2017-12-02 00:00:27 +01:00
|
|
|
default-language: Haskell2010
|
|
|
|
ghc-options: -Wall -pgmL markdown-unlit
|
|
|
|
build-tool-depends: markdown-unlit:markdown-unlit
|