name: couchdb-conduit version: 0.2.0.1 cabal-version: >= 1.8 build-type: Simple stability: Experimental category: Database, Conduit license: BSD3 license-file: LICENSE author: Alexander Dorofeev , John Lenz maintainer: Alexander Dorofeev synopsis: Couch DB client library using http-conduit and aeson homepage: https://github.com/akaspin/couchdb-conduit bug-reports: https://github.com/akaspin/couchdb-conduit/issues description: This package is a thin wrapper around http-conduit to access a Couch DB Database, using the aeson package to parse and encode JSON data. http-conduit, aeson, and attoparsec fit togther so well that this package is mostly just a direct combination of these packages. The single additional feature in this package is an attoparsec parser for views, which allows constant memory processing of view returns. source-repository head type: git location: git://github.com/akaspin/couchdb-conduit.git library hs-source-dirs: src build-depends: base >= 4 && < 5, conduit >= 0.0.0.2 && < 0.1, attoparsec >= 0.8 && < 0.11, attoparsec-conduit >= 0.0 && < 0.1, http-conduit >= 1.1.0.1 && < 1.2, http-types >= 0.6 && < 0.7, monad-control >= 0.3 && < 0.4, transformers >= 0.2 && < 0.3, transformers-base >= 0.4.1 && < 0.5, lifted-base >= 0.1 && < 0.2, bytestring >= 0.9 && < 0.10, utf8-string >= 0.3 && < 0.4, aeson >= 0.5 && < 0.6, text >= 0.11 && < 0.12, unordered-containers >= 0.1 && < 0.2, syb, containers, data-default, blaze-builder ghc-options: -Wall exposed-modules: Database.CouchDB.Conduit, Database.CouchDB.Conduit.DB, Database.CouchDB.Conduit.Design, Database.CouchDB.Conduit.Explicit, Database.CouchDB.Conduit.Generic, Database.CouchDB.Conduit.LowLevel, Database.CouchDB.Conduit.View other-modules: Database.CouchDB.Conduit.Internal.Doc, Database.CouchDB.Conduit.Internal.Parser, Database.CouchDB.Conduit.Internal.View test-suite test type: exitcode-stdio-1.0 x-uses-tf: true build-depends: base >= 4, HUnit >= 1.2 && < 2, QuickCheck >= 2.4, test-framework >= 0.4.1, test-framework-quickcheck2, test-framework-hunit, couchdb-conduit, conduit >= 0.0.0.2 && < 0.1, attoparsec >= 0.8 && < 0.11, attoparsec-conduit >= 0.0 && < 0.1, http-conduit >= 1.1.0.1 && < 1.2, http-types >= 0.6 && < 0.7, monad-control >= 0.3 && < 0.4, transformers >= 0.2 && < 0.3, transformers-base >= 0.4.1 && < 0.5, lifted-base >= 0.1 && < 0.2, bytestring >= 0.9 && < 0.10, utf8-string >= 0.3 && < 0.4, aeson >= 0.5 && < 0.6, text >= 0.11 && < 0.12, unordered-containers >= 0.1 && < 0.2, syb, containers, blaze-builder ghc-options: -Wall -rtsopts -threaded hs-source-dirs: test main-is: Main.hs other-modules: Database.CouchDB.Conduit.Test.Explicit, Database.CouchDB.Conduit.Test.Util, Database.CouchDB.Conduit.Test.View, Database.CouchDB.Conduit.Test.Generic