-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathesqueleto-textsearch.cabal
62 lines (56 loc) · 1.77 KB
/
esqueleto-textsearch.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
name: esqueleto-textsearch
version: 1.0.0.3
synopsis: PostgreSQL full text search for Esqueleto
description: PostgreSQL text search functions for Esqueleto.
homepage: https://github.com/SupercedeTech/esqueleto-textsearch-ii
license: MIT
license-file: LICENSE
author: Alberto Valverde González
maintainer: [email protected]
copyright: 2015 Alberto Valverde González
category: Database
build-type: Simple
extra-source-files: README.md
Changelog.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/SupercedeTech/esqueleto-textsearch-ii
library
exposed-modules:
Database.Esqueleto.TextSearch
Database.Esqueleto.TextSearch.Language
Database.Esqueleto.TextSearch.Types
build-depends:
base >=4.9 && <5
, data-default <0.8
, esqueleto >=3.2 && < 3.6
, parsec <3.2
, persistent >=2.8.2 && <2.15
, persistent-postgresql >=2.10 && <2.15
, text >=1.2 && <2.1
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -fwarn-incomplete-uni-patterns
test-suite spec
type: exitcode-stdio-1.0
ghc-options: -Wall -fwarn-incomplete-uni-patterns
hs-source-dirs: test
main-is: Spec.hs
other-modules: Database.Esqueleto.TextSearchSpec
build-depends:
base
, esqueleto
, esqueleto-textsearch
, hspec
, HUnit
, monad-control
, monad-logger
, persistent
, persistent-postgresql
, persistent-template
, QuickCheck
, resourcet
, text
, transformers
default-language: Haskell2010