2022-01-04 22:06:23 +01:00
|
|
|
cabal-version: 2.2
|
2017-12-08 23:21:00 +01:00
|
|
|
name: cookbook-https
|
|
|
|
version: 0.1
|
|
|
|
synopsis: HTTPS cookbook example
|
2019-03-02 10:08:03 +01:00
|
|
|
homepage: http://docs.servant.dev/
|
2021-10-31 22:37:56 +01:00
|
|
|
license: BSD-3-Clause
|
2017-12-08 23:21:00 +01:00
|
|
|
license-file: ../../../servant/LICENSE
|
|
|
|
author: Servant Contributors
|
|
|
|
maintainer: haskell-servant-maintainers@googlegroups.com
|
|
|
|
build-type: Simple
|
2021-10-02 19:16:32 +02:00
|
|
|
tested-with: GHC==8.6.5, GHC==8.8.3, GHC ==8.10.7
|
2017-12-08 23:21:00 +01:00
|
|
|
|
|
|
|
executable cookbook-https
|
2022-02-25 04:24:59 +01:00
|
|
|
if impl(ghc >= 9.2)
|
|
|
|
buildable: False
|
2017-12-08 23:21:00 +01:00
|
|
|
main-is: Https.lhs
|
|
|
|
build-depends: base == 4.*
|
|
|
|
, servant
|
|
|
|
, servant-server
|
2017-12-27 01:33:12 +01:00
|
|
|
, wai >= 3.2
|
|
|
|
, warp >= 3.2
|
2021-04-10 12:30:31 +02:00
|
|
|
, warp-tls >= 3.2.9
|
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
|