forked from bitemyapp/bloodhound
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.yaml
More file actions
74 lines (70 loc) · 1.65 KB
/
package.yaml
File metadata and controls
74 lines (70 loc) · 1.65 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
name: bloodhound
version: '0.17.0.0'
synopsis: Elasticsearch client library for Haskell
description: Elasticsearch made awesome for Haskell hackers
category: Database, Search
author: Chris Allen
maintainer: cma@bitemyapp.com
copyright: 2018 Chris Allen
license: BSD3
github: bitemyapp/bloodhound.git
extra-source-files:
- README.md
- changelog.md
- tests/tests.hs
dependencies:
- aeson >=0.11.1
- base >=4.3 && <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
library:
source-dirs: src
ghc-options: -Wall
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
tests:
bloodhound-tests:
source-dirs: tests
main: tests.hs
ghc-options:
- -Wall
- -fno-warn-orphans
dependencies:
- QuickCheck
- base
- bloodhound
- errors
- hspec >=1.8
- microlens
- microlens-aeson
- pretty-simple
- quickcheck-arbitrary-template
- quickcheck-properties
- temporary
- unix-compat