-
Notifications
You must be signed in to change notification settings - Fork 3
/
hpqtypes-extras.cabal
138 lines (118 loc) · 4.8 KB
/
hpqtypes-extras.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
cabal-version: 3.0
name: hpqtypes-extras
version: 1.16.4.4
synopsis: Extra utilities for hpqtypes library
description: The following extras for hpqtypes library:
.
* DSL for easy, modular construction of SQL queries.
.
* System for automatic validation and migration
of a database schema.
homepage: https://github.com/scrive/hpqtypes-extras
license: BSD-3-Clause
license-file: LICENSE
extra-source-files: CHANGELOG.md, README.md
author: Scrive AB
maintainer: Andrzej Rybczak <andrzej@rybczak.net>,
Jonathan Jouty <jonathan@scrive.com>,
Mikhail Glushenkov <mikhail@scrive.com>
copyright: Scrive AB
category: Database
build-type: Simple
tested-with: GHC == { 8.10.7, 9.0.2, 9.2.8, 9.4.6, 9.6.2, 9.8.2, 9.10.1 }
Source-repository head
Type: git
Location: https://github.com/scrive/hpqtypes-extras.git
common common-stanza
Default-Language: Haskell2010
Default-Extensions: BangPatterns
, DeriveDataTypeable
, ExistentialQuantification
, FlexibleContexts
, GeneralizedNewtypeDeriving
, ImportQualifiedPost
, LambdaCase
, MultiWayIf
, OverloadedStrings
, RankNTypes
, RecordWildCards
, ScopedTypeVariables
, StandaloneDeriving
, TupleSections
, TypeApplications
, TypeFamilies
, UndecidableInstances
, ViewPatterns
ghc-options: -Werror=prepositive-qualified-module
library
import: common-stanza
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: Database.PostgreSQL.PQTypes.Checks
, Database.PostgreSQL.PQTypes.Deriving
, Database.PostgreSQL.PQTypes.ExtrasOptions
, Database.PostgreSQL.PQTypes.Migrate
, Database.PostgreSQL.PQTypes.Model
, Database.PostgreSQL.PQTypes.Model.Check
, Database.PostgreSQL.PQTypes.Model.ColumnType
, Database.PostgreSQL.PQTypes.Model.CompositeType
, Database.PostgreSQL.PQTypes.Model.Domain
, Database.PostgreSQL.PQTypes.Model.Extension
, Database.PostgreSQL.PQTypes.Model.ForeignKey
, Database.PostgreSQL.PQTypes.Model.Index
, Database.PostgreSQL.PQTypes.Model.Migration
, Database.PostgreSQL.PQTypes.Model.PrimaryKey
, Database.PostgreSQL.PQTypes.Model.Table
, Database.PostgreSQL.PQTypes.Model.Trigger
, Database.PostgreSQL.PQTypes.SQL.Builder
, Database.PostgreSQL.PQTypes.Versions
other-modules: Database.PostgreSQL.PQTypes.Checks.Util
, Database.PostgreSQL.PQTypes.Utils.NubList
build-depends: base >= 4.13 && < 5
, hpqtypes >= 1.8.0.0
, base16-bytestring >= 0.1
, bytestring >= 0.10
, containers >= 0.5
, crypton >= 0.32
, exceptions >= 0.10
, extra >= 1.6.17
, memory >= 0.18
, mtl >= 2.2
, text >= 1.2
, text-show >= 3.7
, log-base >= 0.11
default-language: Haskell2010
default-extensions:
test-suite hpqtypes-extras-tests
import: common-stanza
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
default-language: Haskell2010
default-extensions: ConstraintKinds
, DeriveDataTypeable
, FlexibleContexts
, OverloadedStrings
, RecordWildCards
, ScopedTypeVariables
ghc-options: -Wall
build-depends: base
, containers
, exceptions
, hpqtypes
, hpqtypes-extras
, log-base
, tasty
, tasty-hunit
, text
, uuid-types
benchmark bench
Import: common-stanza
type: exitcode-stdio-1.0
hs-source-dirs: benchmark
main-is: Main.hs
ghc-options: -Wall
build-depends: base
, deepseq
, hpqtypes-extras
, tasty-bench