-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrefurb.cabal
95 lines (93 loc) · 2.04 KB
/
refurb.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
cabal-version: 1.12
name: refurb
version: 0.3.0.3
synopsis: Tools for maintaining a database
description: Tools for maintaining a database
category: Database
homepage: https://github.com/ConferOpenSource/refurb#readme
maintainer: [email protected]
copyright: 2017 Confer Health, Inc., 2020 Vital Biosciences
license: BSD3
license-file: LICENSE
build-type: Simple
library
exposed-modules:
Refurb
Refurb.Cli
Refurb.MigrationUtils
Refurb.Run.Backup
Refurb.Run.Info
Refurb.Run.Internal
Refurb.Run.Migrate
Refurb.Store
Refurb.Types
other-modules:
Paths_refurb
hs-source-dirs:
src
ghc-options: -Wall -O2
build-depends:
ansi-wl-pprint
, base >=4.7 && <5
, bytestring
, classy-prelude
, composite-base ==0.8.*
, composite-opaleye ==0.8.*
, dlist
, exceptions
, fast-logger
, lens
, monad-control
, monad-logger
, old-locale
, opaleye >= 0.9.2 && <0.9.8
, optparse-applicative
, postgresql-simple
, process
, product-profunctors
, template-haskell
, text
, these
, these-lens
, thyme
, transformers-base
, vector-space
default-language: Haskell2010
test-suite refurb-test
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
MigrationUtilsSpec
Paths_refurb
hs-source-dirs:
test
ghc-options: -Wall -O2 -threaded -rtsopts -with-rtsopts=-N -fno-warn-orphans
build-depends:
ansi-wl-pprint
, base >=4.7 && <5
, bytestring
, classy-prelude
, composite-base ==0.8.*
, composite-opaleye ==0.8.*
, dlist
, exceptions
, fast-logger
, hspec
, lens
, monad-control
, monad-logger
, old-locale
, opaleye >= 0.9.2 && <0.9.8
, optparse-applicative
, postgresql-simple
, process
, product-profunctors
, refurb
, template-haskell
, text
, these
, these-lens
, thyme
, transformers-base
, vector-space
default-language: Haskell2010