-
Notifications
You must be signed in to change notification settings - Fork 0
/
typedquery.cabal
43 lines (40 loc) · 1.51 KB
/
typedquery.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
-- Initial typedquery.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: typedquery
version: 0.1.1.2
synopsis: Parser for SQL augmented with types
description: Base package for parsing queries, the idea is to use SQL language to write queries, and TH to make them usable with haskell
homepage: https://github.com/tolysz/typedquery
license: BSD3
license-file: LICENSE
author: Marcin Tolysz
maintainer: tolysz@gmail.com
copyright: ©2014-2019 Marcin Tolysz
category: Database
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
Flag debug-typed-queries
Description: Enable debug support
Default: False
library
exposed-modules: Database.TypedQuery.SQL
Database.TypedQuery.SQLParser
Database.TypedQuery.Types
-- other-modules:
-- other-extensions:
if flag(debug-typed-queries)
cpp-options: -DDEVELOPMENT
build-depends: rawstring-qm
, haskell-src-exts
build-depends: base >=4.5 && < 5
, template-haskell
, haskell-src-meta
, parsec
, aeson
, bytestring
, text
, transformers
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -fno-warn-type-defaults