-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhasql-cursor-transaction.cabal
76 lines (72 loc) · 1.94 KB
/
hasql-cursor-transaction.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
cabal-version: 3.0
name: hasql-cursor-transaction
version: 0.6.5.2
category: Hasql, Database, PostgreSQL, Streaming
synopsis: An abstraction for simultaneous fetching from multiple PostgreSQL cursors
homepage: https://github.com/nikita-volkov/hasql-cursor-transaction
bug-reports: https://github.com/nikita-volkov/hasql-cursor-transaction/issues
author: Nikita Volkov <[email protected]>
maintainer: Nikita Volkov <[email protected]>
copyright: (c) 2016, Nikita Volkov
license: MIT
license-file: LICENSE
library
hs-source-dirs: library
default-language: Haskell2010
default-extensions:
Arrows
BangPatterns
ConstraintKinds
DataKinds
DefaultSignatures
DeriveDataTypeable
DeriveFoldable
DeriveFunctor
DeriveGeneric
DeriveTraversable
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
other-modules:
Hasql.CursorTransaction.Private.CursorTransaction
Hasql.CursorTransaction.Private.Prelude
Hasql.CursorTransaction.Private.Specs
Hasql.CursorTransaction.Private.Statements
Hasql.CursorTransaction.Private.Transactions
exposed-modules:
Hasql.CursorTransaction
Hasql.CursorTransaction.Sessions
Hasql.CursorTransaction.Transactions
build-depends:
base >=4.14 && <5,
base-prelude >=1 && <2,
bytestring >=0.10 && <0.14,
bytestring-tree-builder ^>=0.2,
contravariant >=1.5 && <2,
contravariant-extras ^>=0.3.5.4,
hasql >=1.8 && <1.10,
hasql-transaction ^>=1.1,
transformers >=0.4 && <0.7,