forked from bitemyapp/bloodhound
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bloodhound.cabal
134 lines (129 loc) · 3.28 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.35.1.
--
-- see: https://github.com/sol/hpack
name: bloodhound
version: 0.21.0.0
synopsis: Elasticsearch client library for Haskell
description: Elasticsearch made awesome for Haskell hackers
category: Database, Search
homepage: https://github.com/bitemyapp/bloodhound.git#readme
bug-reports: https://github.com/bitemyapp/bloodhound.git/issues
author: Chris Allen
maintainer: [email protected]
copyright: 2018 Chris Allen
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
changelog.md
tests/tests.hs
source-repository head
type: git
location: https://github.com/bitemyapp/bloodhound.git
library
exposed-modules:
Database.Bloodhound
Database.Bloodhound.Client
Database.Bloodhound.Types
Database.Bloodhound.Internal.Aggregation
Database.Bloodhound.Internal.Analysis
Database.Bloodhound.Internal.Client
Database.Bloodhound.Internal.Highlight
Database.Bloodhound.Internal.Newtypes
Database.Bloodhound.Internal.Query
Database.Bloodhound.Internal.Sort
Database.Bloodhound.Internal.StringlyTyped
Database.Bloodhound.Internal.Suggest
other-modules:
Bloodhound.Import
Database.Bloodhound.Common.Script
Database.Bloodhound.Internal.Client.BHRequest
Database.Bloodhound.Internal.Client.Doc
Database.Bloodhound.Internal.Count
Database.Bloodhound.Internal.PointInTime
Database.Bloodhound.Internal.Source
Paths_bloodhound
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
aeson >=2.0
, base >=4.14 && <5
, blaze-builder
, bytestring >=0.10.0
, containers >=0.5.0.0
, exceptions
, hashable
, http-client >=0.4.30
, http-types >=0.8
, mtl >=1.0
, network-uri >=2.6
, scientific >=0.3.0.0
, semigroups >=0.15
, semver
, text >=0.11
, time >=1.4
, transformers >=0.2
, unordered-containers
, vector >=0.10.9
default-language: Haskell2010
test-suite bloodhound-tests
type: exitcode-stdio-1.0
main-is: tests.hs
other-modules:
Test.Aggregation
Test.ApproxEq
Test.BulkAPI
Test.Common
Test.Count
Test.Documents
Test.Generators
Test.Highlights
Test.Import
Test.Indices
Test.JSON
Test.Query
Test.Script
Test.Snapshots
Test.Sorting
Test.SourceFiltering
Test.Suggest
Test.Templates
Paths_bloodhound
hs-source-dirs:
tests
ghc-options: -Wall -fno-warn-orphans
build-depends:
QuickCheck
, aeson >=2.0
, base
, blaze-builder
, bloodhound
, bytestring >=0.10.0
, containers >=0.5.0.0
, errors
, exceptions
, generic-random
, hashable
, hspec >=1.8
, http-client >=0.4.30
, http-types >=0.8
, microlens
, microlens-aeson >=2.4
, mtl >=1.0
, network-uri >=2.6
, pretty-simple
, quickcheck-properties
, scientific >=0.3.0.0
, semigroups >=0.15
, semver
, temporary
, text >=0.11
, time >=1.4
, transformers >=0.2
, unix-compat
, unordered-containers
, vector >=0.10.9
default-language: Haskell2010