2017-12-02 00:00:27 +01:00
|
|
|
name: cookbook-db-sqlite-simple
|
|
|
|
version: 0.1
|
|
|
|
synopsis: Simple SQLite DB cookbook example
|
2019-03-02 10:08:03 +01:00
|
|
|
homepage: http://docs.servant.dev/
|
2017-12-02 00:00:27 +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-02 00:00:27 +01:00
|
|
|
|
|
|
|
executable cookbook-db-sqlite-simple
|
|
|
|
main-is: DBConnection.lhs
|
|
|
|
build-depends: base == 4.*
|
2017-12-27 01:33:12 +01:00
|
|
|
, text >= 1.2
|
|
|
|
, aeson >= 1.2
|
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
|
2018-01-28 17:26:43 +01:00
|
|
|
, http-types >= 0.12
|
2017-12-02 00:00:27 +01:00
|
|
|
, markdown-unlit >= 0.4
|
2017-12-27 01:33:12 +01:00
|
|
|
, http-client >= 0.5
|
|
|
|
, sqlite-simple >= 0.4
|
2018-01-17 20:43:00 +01:00
|
|
|
, transformers
|
2017-12-02 00:00:27 +01:00
|
|
|
default-language: Haskell2010
|
|
|
|
ghc-options: -Wall -pgmL markdown-unlit
|
|
|
|
build-tool-depends: markdown-unlit:markdown-unlit
|