2014-03-29 05:42:39 +04:00
|
|
|
name: bloodhound
|
2014-06-16 08:10:52 +04:00
|
|
|
version: 0.1.0.3
|
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-03-29 05:42:39 +04:00
|
|
|
license: Apache-2.0
|
|
|
|
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-03-29 05:42:39 +04:00
|
|
|
build-type: Simple
|
|
|
|
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-06-08 11:14:59 +04:00
|
|
|
ghc-options: -Wall -fno-warn-orphans
|
2014-04-08 06:16:07 +04:00
|
|
|
default-extensions: OverloadedStrings
|
2014-04-15 11:50:32 +04:00
|
|
|
exposed-modules: Database.Bloodhound
|
|
|
|
Database.Bloodhound.Client
|
|
|
|
Database.Bloodhound.Types
|
|
|
|
Database.Bloodhound.Types.Class
|
|
|
|
Database.Bloodhound.Types.Instances
|
2014-05-03 09:57:50 +04:00
|
|
|
build-depends: base >= 4.3 && <5,
|
2014-05-03 12:54:40 +04:00
|
|
|
bytestring >= 0.10.2,
|
2014-05-03 09:57:50 +04:00
|
|
|
aeson >= 0.7,
|
|
|
|
conduit >= 1.0,
|
2014-05-19 23:59:40 +04:00
|
|
|
http-client >= 0.3,
|
2014-06-15 21:56:47 +04:00
|
|
|
semigroups >= 0.15,
|
2014-05-03 09:57:50 +04:00
|
|
|
time >= 1.4,
|
|
|
|
text >= 0.11,
|
2014-05-15 19:43:46 +04:00
|
|
|
http-types >= 0.8
|
2014-03-29 05:42:39 +04:00
|
|
|
default-language: Haskell2010
|
2014-04-05 07:55:53 +04:00
|
|
|
|
|
|
|
test-suite tests
|
2014-04-27 09:49:44 +04:00
|
|
|
ghc-options: -Wall
|
2014-04-10 09:25:17 +04:00
|
|
|
default-extensions: OverloadedStrings
|
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-04-10 07:24:46 +04:00
|
|
|
hspec >= 1.8,
|
2014-04-07 03:29:46 +04:00
|
|
|
text >= 0.11,
|
|
|
|
time >= 1.4,
|
2014-06-15 21:56:47 +04:00
|
|
|
aeson >= 0.7,
|
|
|
|
semigroups >= 0.15,
|
|
|
|
QuickCheck
|
2014-04-05 08:01:49 +04:00
|
|
|
default-language: Haskell2010
|