-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathhasql-th.cabal
92 lines (86 loc) · 2.28 KB
/
hasql-th.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
cabal-version: 3.0
name: hasql-th
version: 0.4.0.23
category: Hasql, Database, PostgreSQL, Template Haskell
synopsis: Template Haskell utilities for Hasql
description:
Extension-library for Hasql,
bringing compile-time syntax checking,
great simplification of declaration of statements and
other TemplateHaskell-based utilities.
For details please see <https://github.com/nikita-volkov/hasql-th the readme>.
homepage: https://github.com/nikita-volkov/hasql-th
bug-reports: https://github.com/nikita-volkov/hasql-th/issues
author: Nikita Volkov <[email protected]>
maintainer: Nikita Volkov <[email protected]>
copyright: (c) 2015, Nikita Volkov
license: MIT
license-file: LICENSE
source-repository head
type: git
location: git://github.com/nikita-volkov/hasql-th.git
library
hs-source-dirs: library
default-extensions:
ApplicativeDo
Arrows
BangPatterns
ConstraintKinds
DataKinds
DefaultSignatures
DeriveDataTypeable
DeriveFoldable
DeriveFunctor
DeriveGeneric
DeriveTraversable
DuplicateRecordFields
EmptyDataDecls
FlexibleContexts
FlexibleInstances
FunctionalDependencies
GADTs
GeneralizedNewtypeDeriving
LambdaCase
LiberalTypeSynonyms
MagicHash
MultiParamTypeClasses
MultiWayIf
NoImplicitPrelude
NoMonomorphismRestriction
OverloadedStrings
ParallelListComp
PatternGuards
QuasiQuotes
RankNTypes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TemplateHaskell
TupleSections
TypeFamilies
TypeOperators
UnboxedTuples
default-language: Haskell2010
exposed-modules: Hasql.TH
other-modules:
Hasql.TH.Construction.Exp
Hasql.TH.Extraction.ChildExprList
Hasql.TH.Extraction.Exp
Hasql.TH.Extraction.InputTypeList
Hasql.TH.Extraction.OutputTypeList
Hasql.TH.Extraction.PlaceholderTypeMap
Hasql.TH.Extraction.PrimitiveType
Hasql.TH.Prelude
build-depends:
base >=4.11 && <5,
bytestring >=0.10 && <0.13,
containers >=0.6 && <0.8,
contravariant >=1.5.2 && <2,
foldl >=1.4.5 && <2,
hasql >=1.4 && <1.10,
postgresql-syntax >=0.4.1 && <0.5,
template-haskell >=2.8 && <3,
template-haskell-compat-v0208 >=0.1.9 && <2,
text >=1 && <3,
uuid >=1.3 && <2,
vector >=0.12 && <0.14,