bloodhound/bloodhound.cabal

63 lines
2.5 KiB
Plaintext
Raw Normal View History

2014-03-29 05:42:39 +04:00
-- Initial bloodhound.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: bloodhound
version: 0.1.0.0
synopsis: ElasticSearch client library for Haskell
description: ElasticSearch made awesome for Haskell hackers
2014-04-14 05:37:47 +04:00
homepage: 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
library
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
build-depends: base >=4.3 && <5,
bytestring >= 0.10,
transformers >= 0.3,
free >= 4.5,
lens >= 4,
aeson >= 0.7,
conduit >= 1.0,
http-conduit >= 2.0,
io-streams >= 1.1,
http-streams >= 0.7,
HTTP >= 4000.2,
time >= 1.4,
text >= 0.11,
http-types >= 0.8,
blaze-builder >= 0.3,
failure >= 0.2,
semigroups >= 0.12
2014-03-29 05:42:39 +04:00
default-language: Haskell2010
test-suite tests
2014-04-10 09:25:17 +04:00
default-extensions: OverloadedStrings
type: exitcode-stdio-1.0
main-is: tests.hs
-- ghc-options: -w -threaded -rtsopts -with-rtsopts=-N
hs-source-dirs: tests
build-depends: base,
bloodhound,
http-conduit,
2014-04-07 03:29:46 +04:00
http-types,
hspec >= 1.8,
2014-04-07 03:29:46 +04:00
QuickCheck >= 2.5,
derive >= 2.5,
text >= 0.11,
time >= 1.4,
aeson >= 0.7,
random >= 1.0,
quickcheck-instances >= 0.3
2014-04-05 08:01:49 +04:00
default-language: Haskell2010