forked from nikita-volkov/postgresql-syntax
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpostgresql-syntax.cabal
More file actions
78 lines (74 loc) · 4.07 KB
/
Copy pathpostgresql-syntax.cabal
File metadata and controls
78 lines (74 loc) · 4.07 KB
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
name: postgresql-syntax
version: 0.3.0.3
category: Database, PostgreSQL, Parsing
synopsis: PostgreSQL AST parsing and rendering
description:
Postgres syntax tree and related utils extracted from the \"hasql-th\" package.
The API is in a rather raw \"guts out\" state with most documentation lacking,
but the codebase is well tested.
homepage: https://github.com/nikita-volkov/postgresql-syntax
bug-reports: https://github.com/nikita-volkov/postgresql-syntax/issues
author: Nikita Volkov <nikita.y.volkov@mail.ru>
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
copyright: (c) 2020, 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/postgresql-syntax.git
library
hs-source-dirs: library
default-extensions: ApplicativeDo, Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, DuplicateRecordFields, 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
exposed-modules:
PostgresqlSyntax.Ast
PostgresqlSyntax.KeywordSet
PostgresqlSyntax.Parsing
PostgresqlSyntax.Rendering
PostgresqlSyntax.Validation
other-modules:
PostgresqlSyntax.CharSet
PostgresqlSyntax.Extras.HeadedMegaparsec
PostgresqlSyntax.Extras.NonEmpty
PostgresqlSyntax.Predicate
PostgresqlSyntax.Prelude
build-depends:
base >=4.12 && <5,
bytestring >=0.10 && <0.11,
case-insensitive >=1.2 && <2,
fast-builder >=0.1.2 && <0.2,
hashable >=1.2 && <2,
headed-megaparsec >=0.2 && <0.3,
megaparsec >=9 && <10,
parser-combinators >=1.1 && <1.3,
text >=1 && <2,
text-builder >=0.6.6.1 && <0.7,
unordered-containers >=0.2.10 && <0.3
test-suite tasty-test
type: exitcode-stdio-1.0
hs-source-dirs: tasty-test
main-is: Main.hs
default-extensions: ApplicativeDo, Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, DuplicateRecordFields, 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:
postgresql-syntax,
QuickCheck >=2.10 && <3,
quickcheck-instances >=0.3.22 && <0.4,
rerebase <2,
tasty >=1.2.3 && <2,
tasty-hunit >=0.10 && <0.11,
tasty-quickcheck >=0.10 && <0.11
test-suite hedgehog-test
type: exitcode-stdio-1.0
hs-source-dirs: hedgehog-test
default-extensions: ApplicativeDo, Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, DuplicateRecordFields, 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
main-is: Main.hs
other-modules:
Main.Gen
build-depends:
hedgehog >=1.0.1 && <2,
postgresql-syntax,
rerebase >=1.6.1 && <2