esqueleto/examples/package.yaml
Matt Parsons cd16b2b22f
Support upcoming persistent-2.13 (#245)
* stack-8.8.yaml now does GHC 8.8

* support ghc 8.10.4, upgrade to cabal 3.4

* do it

* use stack 8.10 by default, support pers2.13

* sqlite tests are failing???

* build with cabal

* gitignore

* tidy up

* work with persistent-2.13

* giddyup

* keep cabal file in repo

* fixx

* changelog, vbump

* update cache keys
2021-05-05 16:23:53 -06:00

45 lines
685 B
YAML

name: esqueleto-examples
version: '0.0.0.0'
category: Database
author: Fintan Halpenny
maintainer: cma@bitemyapp.com
copyright: 2019, Chris Allen
license: BSD3
github: bitemyapp/esqueleto
extra-source-files:
- README.md
dependencies:
- base
- esqueleto
- persistent >= 2.12
- persistent-postgresql
- mtl
- monad-logger
- monad-control
- transformers-base
- unliftio-core
ghc-options:
- '-Wall'
- '-threaded'
- '-rtsopts'
- '-with-rtsopts=-N'
when:
- condition: flag(werror)
ghc-options: '-Werror'
executables:
blog-example:
other-modules:
- Blog
main: Main.hs
flags:
werror:
description: "Treat warnings as errors"
manual: true
default: false