This repository has been archived by the owner on Jan 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathHedsql.cabal
67 lines (64 loc) · 2.3 KB
/
Hedsql.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
name: Hedsql
version: 0.1
cabal-version: >=1.6
build-type: Custom
author: Leonard Monnier
stability: alpha
maintainer: Leonard Monnier <leonard.monnier@gmail.com>
synopsis: EDSL for SQL
description: Provide a convenient way to write SQL in Haskell.
category: Database
license: GPL-3
license-file: LICENCE.md
copyright: (c) 2014-2015 Leonard Monnier
tested-with: GHC==7.10.2
library
hs-source-dirs: src
ghc-options: -Wall
exposed-modules:
Database.Hedsql
Database.Hedsql.Drivers.MariaDB.Constructor,
Database.Hedsql.Drivers.PostgreSQL.Constructor,
Database.Hedsql.MariaDB,
Database.Hedsql.PostgreSQL,
Database.Hedsql.SqLite
Database.Hedsql.Ext
Database.Hedsql.CRUD
build-depends:
base,
lens,
template-haskell,
mtl,
text,
wl-pprint-text
other-modules:
Database.Hedsql.Drivers.MariaDB.Driver,
Database.Hedsql.Drivers.MariaDB.CodeGenerator,
Database.Hedsql.Drivers.PostgreSQL.Driver,
Database.Hedsql.Drivers.PostgreSQL.CodeGenerator,
Database.Hedsql.Drivers.SqLite.Driver,
Database.Hedsql.Drivers.SqLite.CodeGenerator,
Database.Hedsql.Common.AST,
Database.Hedsql.Common.CodeGenerator,
Database.Hedsql.Common.CodeGenerator.Type
Database.Hedsql.Common.PrettyPrint,
Database.Hedsql.Common.Constructor,
Database.Hedsql.Specific.Constructor
test-suite tests
type: exitcode-stdio-1.0
x-uses-tf: true
ghc-options: -Wall -rtsopts
build-depends:
base,
random,
text,
HUnit,
QuickCheck,
test-framework,
test-framework-quickcheck2,
test-framework-hunit,
sqlite-simple
hs-source-dirs:
src,
tests
main-is: Test.hs