-
Notifications
You must be signed in to change notification settings - Fork 6
/
esqueleto-textsearch.cabal
51 lines (49 loc) · 1.94 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
name: esqueleto-textsearch
version: 0.1.0.0
synopsis: PostgreSQL full text search for Esqueleto
description: PostgreSQL text search functions for Esqueleto.
homepage: https://github.com/albertov/esqueleto-textsearch
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
cabal-version: >=1.10
library
exposed-modules: Database.Esqueleto.TextSearch
, Database.Esqueleto.TextSearch.Language
, Database.Esqueleto.TextSearch.Types
-- other-modules:
build-depends: base >=4.7 && <5
, esqueleto >=2.1 && <2.5
, persistent >=2.1 && <2.7
, persistent-postgresql >=2.1.4 && <2.7
, text >= 1.2 && <1.3
, parsec
, data-default
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
build-depends: base
, esqueleto
, esqueleto-textsearch
, persistent
, transformers
, resourcet
, text
, HUnit
, QuickCheck
, hspec
, persistent-postgresql
, persistent-template
, monad-control
, monad-logger
default-language: Haskell2010