-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdrifter-postgresql.cabal
63 lines (54 loc) · 1.78 KB
/
drifter-postgresql.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: drifter-postgresql
version: 0.2.1
synopsis: PostgreSQL support for the drifter schema migration tool
description: Support for postgresql-simple Query migrations as well as
arbitrary Haskell IO functions. Be sure to check the
examples dir for a usage example.
license: MIT
license-file: LICENSE
author: Michael Xavier
maintainer: [email protected]
category: Database
build-type: Simple
cabal-version: >=1.10
tested-with: GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2
extra-source-files:
README.md
changelog.md
examples/Example.hs
homepage: http://github.com/michaelxavier/drifter-postgresql
bug-reports: http://github.com/michaelxavier/drifter-postgresql/issues
flag lib-Werror
default: False
manual: True
library
exposed-modules: Drifter.PostgreSQL
build-depends: base >=4.8 && <5
, postgresql-simple >= 0.2
, containers
, drifter >= 0.2
, time
, mtl
, transformers
, transformers-compat >=0.2
hs-source-dirs: src
default-language: Haskell2010
if flag(lib-Werror)
ghc-options: -Werror
ghc-options: -Wall
test-suite test
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
default-language: Haskell2010
build-depends: base
, drifter
, postgresql-simple
, drifter-postgresql
, tasty
, tasty-hunit
, either
, text
if flag(lib-Werror)
ghc-options: -Werror
ghc-options: -Wall