forked from bitemyapp/bloodhound
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bloodhound.cabal
58 lines (55 loc) · 2.19 KB
/
bloodhound.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
name: bloodhound
version: 0.4.0.0
synopsis: ElasticSearch client library for Haskell
description: ElasticSearch made awesome for Haskell hackers
homepage: https://github.com/bitemyapp/bloodhound
license: BSD3
license-file: LICENSE
author: Chris Allen
maintainer: [email protected]
copyright: 2014, Chris Allen
category: Database, Search
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/bitemyapp/bloodhound.git
library
ghc-options: -Wall
default-extensions: OverloadedStrings
exposed-modules: Database.Bloodhound
Database.Bloodhound.Client
Database.Bloodhound.Types
Database.Bloodhound.Types.Class
build-depends: base >= 4.3 && <5,
bytestring >= 0.10.2,
containers >= 0.5.0.0,
aeson >= 0.7,
conduit >= 1.0,
http-client >= 0.3,
semigroups >= 0.15,
time >= 1.4,
text >= 0.11,
http-types >= 0.8,
vector >= 0.10.11
default-language: Haskell2010
test-suite tests
ghc-options: -Wall
default-extensions: OverloadedStrings
type: exitcode-stdio-1.0
main-is: tests.hs
hs-source-dirs: tests
build-depends: base,
bloodhound,
http-client,
http-types,
containers >= 0.5.0.0,
hspec >= 1.8,
text >= 0.11,
time >= 1.4,
aeson >= 0.7,
semigroups >= 0.15,
QuickCheck,
vector >= 0.10.11,
unordered-containers >=0.2.5.0
default-language: Haskell2010