2014-03-29 05:42:39 +04:00
|
|
|
name: bloodhound
|
2015-06-05 01:37:57 +03:00
|
|
|
version: 0.6.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
|
|
|
|
|
2015-02-06 03:08:27 +03:00
|
|
|
flag DevelopmentMode
|
|
|
|
Default: False
|
|
|
|
|
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,
|
|
|
|
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,
|
2015-03-03 20:21:01 +03:00
|
|
|
mtl >= 1.0 && <2.3,
|
|
|
|
transformers >= 0.2 && <0.5,
|
2014-11-20 05:23:37 +03:00
|
|
|
http-types >= 0.8 && <0.9,
|
2015-03-18 22:22:50 +03:00
|
|
|
vector >= 0.10.9 && <0.11,
|
2015-05-11 19:32:38 +03:00
|
|
|
uri-bytestring >= 0.1 && <0.2,
|
2015-03-18 22:22:50 +03:00
|
|
|
exceptions,
|
|
|
|
data-default-class
|
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,
|
2015-06-02 03:57:10 +03:00
|
|
|
hspec >= 1.8 && <2.2,
|
2014-11-20 05:34:27 +03:00
|
|
|
text,
|
|
|
|
time,
|
|
|
|
aeson,
|
|
|
|
semigroups,
|
2014-10-10 03:01:04 +04:00
|
|
|
QuickCheck,
|
2014-11-20 05:34:27 +03:00
|
|
|
vector,
|
2015-05-11 19:32:38 +03:00
|
|
|
unordered-containers >= 0.2.5.0 && <0.3,
|
2015-05-14 03:08:52 +03:00
|
|
|
mtl,
|
|
|
|
quickcheck-properties
|
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
|
2015-05-11 19:32:38 +03:00
|
|
|
if impl(ghc >= 7.8)
|
|
|
|
build-depends: base,
|
|
|
|
directory,
|
|
|
|
doctest,
|
|
|
|
doctest-prop,
|
|
|
|
filepath
|
|
|
|
else
|
|
|
|
buildable: False
|