-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhasqul.cabal
73 lines (70 loc) · 1.79 KB
/
hasqul.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
name: hasqul
version: 0.1.0.0
synopsis: haskell ORM based on hasql
description: haskell ORM based on hasql
homepage: https://github.com/cyberfined/hasqul
bug-reports: https://github.com/cyberfined/hasqul/issues
author: cyberfined
maintainer: cyberfined@protonmail.com
copyright: Copyright (c) cyberfined
license: OtherLicense
license-file: LICENSE
category: Database
build-type: Simple
cabal-version: >= 1.12
extra-source-files:
LICENSE
README.md
source-repository head
type: git
location: https://github.com/cyberfined/hasqul
library
exposed-modules:
Database.Hasqul
, Database.Hasqul.Updater
other-modules:
Database.Hasqul.Codec
, Database.Hasqul.GCodec
, Database.Hasqul.Key
, Database.Hasqul.Options
, Database.Hasqul.Valuable
default-extensions:
DataKinds
, FlexibleContexts
, FlexibleInstances
, KindSignatures
, MultiParamTypeClasses
, TypeApplications
, TypeFamilies
, TypeOperators
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
aeson >= 1.5 && < 2
, base >= 4.7 && < 5
, bytestring >= 0.10 && < 1
, bytestring-strict-builder >= 0.4 && < 1
, contravariant >= 1.5 && < 2
, data-default-class >= 0.1 && < 1
, hasql >= 1.4 && < 2
, hasql-transaction >= 1 && < 2
, scientific >= 0.3 && < 1
, text >= 1.2 && < 2
, time >= 1.9 && < 2
, unordered-containers >= 0.2 && < 1
, uuid >= 1.3 && < 2
, vector >= 0.12 && < 1
default-language: Haskell2010
executable hasqul-exe
main-is: Main.hs
hs-source-dirs:
main
ghc-options: -Wall
build-depends:
base >= 4.7 && < 5
, bytestring >= 0.10 && < 1
, hasql >= 1.4 && < 2
, text >= 1.2 && < 2
, hasqul
default-language: Haskell2010