2014-03-29 05:42:39 +04:00
|
|
|
name: bloodhound
|
2014-12-12 09:28:32 +03:00
|
|
|
version: 0.5.0.0
|
2014-03-29 05:42:39 +04:00
|
|
|
synopsis: ElasticSearch client library for Haskell
|
|
|
|
description: ElasticSearch made awesome for Haskell hackers
|
2014-05-04 06:06:39 +04:00
|
|
|
homepage: https://github.com/bitemyapp/bloodhound
|
2014-11-01 19:27:32 +03:00
|
|
|
license: BSD3
|
2014-03-29 05:42:39 +04:00
|
|
|
license-file: LICENSE
|
|
|
|
author: Chris Allen
|
|
|
|
maintainer: cma@bitemyapp.com
|
|
|
|
copyright: 2014, Chris Allen
|
2014-04-14 05:34:01 +04:00
|
|
|
category: Database, Search
|
2014-12-11 00:38:22 +03:00
|
|
|
build-type: Custom
|
2014-03-29 05:42:39 +04:00
|
|
|
cabal-version: >=1.10
|
|
|
|
|
2014-05-03 11:10:21 +04:00
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: https://github.com/bitemyapp/bloodhound.git
|
|
|
|
|
2014-03-29 05:42:39 +04:00
|
|
|
library
|
2014-10-20 09:54:57 +04:00
|
|
|
ghc-options: -Wall
|
2014-04-15 11:50:32 +04:00
|
|
|
exposed-modules: Database.Bloodhound
|
|
|
|
Database.Bloodhound.Client
|
|
|
|
Database.Bloodhound.Types
|
|
|
|
Database.Bloodhound.Types.Class
|
2014-11-20 06:29:51 +03:00
|
|
|
hs-source-dirs: src
|
2014-11-20 05:23:37 +03:00
|
|
|
build-depends: base >= 4.3 && <5,
|
2014-12-12 08:19:32 +03:00
|
|
|
bytestring >= 0.10.0 && <0.11,
|
2014-11-20 05:23:37 +03:00
|
|
|
containers >= 0.5.0.0 && <0.6,
|
|
|
|
aeson >= 0.7 && <0.9,
|
|
|
|
conduit >= 1.0 && <1.3,
|
|
|
|
http-client >= 0.3 && <0.5,
|
2014-12-07 11:14:38 +03:00
|
|
|
semigroups >= 0.15 && <0.17,
|
2014-11-20 05:23:37 +03:00
|
|
|
time >= 1.4 && <1.6,
|
|
|
|
text >= 0.11 && <1.3,
|
|
|
|
http-types >= 0.8 && <0.9,
|
2014-12-12 06:18:45 +03:00
|
|
|
vector >= 0.10.9 && <0.11
|
2014-03-29 05:42:39 +04:00
|
|
|
default-language: Haskell2010
|
2014-04-05 07:55:53 +04:00
|
|
|
|
|
|
|
test-suite tests
|
2014-12-12 08:19:32 +03:00
|
|
|
ghc-options: -Wall -fno-warn-orphans
|
2014-04-05 07:55:53 +04:00
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
main-is: tests.hs
|
|
|
|
hs-source-dirs: tests
|
|
|
|
build-depends: base,
|
|
|
|
bloodhound,
|
2014-05-19 23:59:40 +04:00
|
|
|
http-client,
|
2014-04-07 03:29:46 +04:00
|
|
|
http-types,
|
2014-11-20 05:34:27 +03:00
|
|
|
containers,
|
|
|
|
hspec >= 1.8 && <2.1,
|
|
|
|
text,
|
|
|
|
time,
|
|
|
|
aeson,
|
|
|
|
semigroups,
|
2014-10-10 03:01:04 +04:00
|
|
|
QuickCheck,
|
2014-11-20 05:34:27 +03:00
|
|
|
vector,
|
|
|
|
unordered-containers >= 0.2.5.0 && <0.3
|
2014-04-05 08:01:49 +04:00
|
|
|
default-language: Haskell2010
|
2014-12-10 23:17:14 +03:00
|
|
|
|
|
|
|
test-suite doctests
|
|
|
|
default-language: Haskell2010
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
main-is: doctests.hs
|
|
|
|
hs-source-dirs: tests
|
|
|
|
build-depends: base,
|
2014-12-12 08:19:32 +03:00
|
|
|
directory,
|
2014-12-10 23:17:14 +03:00
|
|
|
doctest,
|
|
|
|
doctest-prop,
|
|
|
|
filepath
|