forked from nikita-volkov/hasql-cursor-query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhasql-cursor-query.cabal
100 lines (94 loc) · 3.22 KB
/
hasql-cursor-query.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
name:
hasql-cursor-query
version:
0.4.4.1
category:
Hasql, Database, PostgreSQL, Streaming
synopsis:
A declarative abstraction over PostgreSQL Cursor
homepage:
https://github.com/nikita-volkov/hasql-cursor-query
bug-reports:
https://github.com/nikita-volkov/hasql-cursor-query/issues
author:
Nikita Volkov <[email protected]>
maintainer:
Nikita Volkov <[email protected]>
copyright:
(c) 2016, Nikita Volkov
license:
MIT
license-file:
LICENSE
build-type:
Simple
cabal-version:
>=1.10
source-repository head
type:
git
location:
git://github.com/nikita-volkov/hasql-cursor-query.git
library
hs-source-dirs:
library
ghc-options:
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, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
default-language:
Haskell2010
other-modules:
Hasql.CursorQuery.Private.Prelude
Hasql.CursorQuery.Private.CursorQuery
Hasql.CursorQuery.Private.Decoders
Hasql.CursorQuery.Private.Transactions
Hasql.CursorQuery.Private.CursorTransactions
Hasql.CursorQuery.Private.Sessions
exposed-modules:
Hasql.CursorQuery.Transactions
Hasql.CursorQuery.CursorTransactions
Hasql.CursorQuery.Sessions
Hasql.CursorQuery
build-depends:
-- database:
hasql >= 0.19 && < 0.20 || >= 1 && < 1.2,
hasql-transaction >= 0.5 && < 0.6,
hasql-cursor-transaction >= 0.6 && < 0.7,
-- data:
bytestring >= 0.10 && < 0.11,
-- control:
foldl > 1 && < 2,
profunctors == 5.*,
contravariant >= 1.3 && < 2,
-- general:
base-prelude >= 1 && < 2,
base >= 4.6 && < 5
test-suite tasty
type:
exitcode-stdio-1.0
hs-source-dirs:
tasty
main-is:
Main.hs
other-modules:
Main.CursorQueries
Main.Queries
Main.IO
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, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
default-language:
Haskell2010
build-depends:
-- database:
hasql,
hasql-cursor-query,
-- testing:
tasty == 0.11.*,
tasty-quickcheck == 0.8.*,
tasty-smallcheck == 0.8.*,
tasty-hunit == 0.9.*,
quickcheck-instances >= 0.3.11 && < 0.4,
QuickCheck >= 2.8.1 && < 2.9,
--
foldl >= 1.2 && < 2,
rebase < 2