bloodhound/bloodhound.cabal

98 lines
3.5 KiB
Plaintext
Raw Normal View History

name: bloodhound
2017-04-20 02:35:21 +03:00
version: 0.14.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
license: BSD3
2014-03-29 05:42:39 +04:00
license-file: LICENSE
author: Chris Allen
maintainer: cma@bitemyapp.com
2015-10-29 23:18:02 +03:00
copyright: 2015, Chris Allen
2014-04-14 05:34:01 +04:00
category: Database, Search
2016-11-17 10:10:46 +03:00
build-type: Simple
2014-03-29 05:42:39 +04:00
cabal-version: >=1.10
extra-source-files:
README.md
changelog.md
2014-05-03 11:10:21 +04:00
source-repository head
type: git
location: https://github.com/bitemyapp/bloodhound.git
Flag ES1
Description: Run the test suite against an Elasticsearch 1.x server
Default: True
Flag ES5
Description: Run the test suite against an Elasticsearch 5.x server
Default: False
2014-03-29 05:42:39 +04:00
library
2017-01-31 22:36:38 +03:00
ghc-options: -Wall
exposed-modules: Database.V1.Bloodhound
Database.V1.Bloodhound.Client
Database.V1.Bloodhound.Types
Database.V1.Bloodhound.Types.Class
Database.V1.Bloodhound.Types.Internal
Database.V5.Bloodhound
Database.V5.Bloodhound.Client
Database.V5.Bloodhound.Types
Database.V5.Bloodhound.Types.Class
Database.V5.Bloodhound.Types.Internal
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,
2017-04-20 02:34:56 +03:00
aeson >= 0.11.1 && <1.3,
http-client >= 0.4.30 && <0.6,
network-uri >= 2.6 && <2.7,
2015-11-11 08:31:13 +03:00
semigroups >= 0.15 && <0.19,
2016-02-29 06:00:52 +03:00
time >= 1.4 && <1.7,
2014-11-20 05:23:37 +03:00
text >= 0.11 && <1.3,
mtl >= 1.0 && <2.3,
2016-02-29 06:00:52 +03:00
transformers >= 0.2 && <0.6,
2015-10-16 23:13:12 +03:00
http-types >= 0.8 && <0.10,
2017-01-31 22:36:38 +03:00
vector >= 0.10.9 && <0.13,
scientific >= 0.3.0.0 && <0.4.0.0,
exceptions,
data-default-class,
2015-07-17 20:21:34 +03:00
blaze-builder,
unordered-containers,
mtl-compat,
hashable
2014-03-29 05:42:39 +04:00
default-language: Haskell2010
test-suite tests
2014-12-12 08:19:32 +03:00
ghc-options: -Wall -fno-warn-orphans
type: exitcode-stdio-1.0
main-is: tests.hs
if flag(ES5)
hs-source-dirs: tests/V5
else
hs-source-dirs: tests/V1
build-depends: base,
bloodhound,
bytestring,
http-client,
2014-04-07 03:29:46 +04:00
http-types,
2014-11-20 05:34:27 +03:00
containers,
2017-02-14 21:39:28 +03:00
hspec >= 1.8,
2014-11-20 05:34:27 +03:00
text,
time,
aeson,
semigroups,
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,
mtl,
quickcheck-properties,
generics-sop >=0.2 && <0.3,
errors,
2016-07-20 20:58:21 +03:00
exceptions,
temporary,
unix-compat,
network-uri
2014-04-05 08:01:49 +04:00
default-language: Haskell2010