* 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
45 lines
685 B
YAML
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
|