packages feed

ez-couch-0.7.0: ez-couch.cabal

name:               ez-couch
version:            0.7.0
cabal-version:      >=1.8
build-type:         Simple
license:            MIT
license-file:       LICENSE
copyright:          (c) 2013, Nikita Volkov
author:             Nikita Volkov
maintainer:         Nikita Volkov <nikita.y.volkov@mail.ru>
stability:          experimental
homepage:           https://github.com/nikita-volkov/ez-couch
bug-reports:        https://github.com/nikita-volkov/ez-couch/issues
synopsis:           A high level static library for working with CouchDB
description:        EZCouch is a library which takes a mission of bringing the topmost level of abstraction for working with CouchDB from Haskell. It abstracts away from loose concepts of this database and brings a strict static API over standard ADTs. 
category:           Database, CouchDB

library
  hs-source-dirs:   src
  extensions:       PatternGuards
  exposed-modules:  EZCouch
  other-modules:    Database.CouchDB.Conduit.View.Query
                    EZCouch.Base62
                    EZCouch.Entity
                    EZCouch.Action
                    EZCouch.WriteAction
                    EZCouch.Design
                    EZCouch.Encoding
                    EZCouch.Ids
                    EZCouch.Isolation
                    EZCouch.JS
                    EZCouch.Model.Design
                    EZCouch.Model.Isolation
                    EZCouch.Model.View
                    EZCouch.Parsing
                    EZCouch.ReadAction
                    EZCouch.Retry
                    EZCouch.Time
                    EZCouch.Try
                    EZCouch.Types
                    EZCouch.View
                    Network.HTTP.Conduit.Request
                    Util.Logging
                    EZCouch.Model.EntityIsolation
                    EZCouch.EntityIsolation
                    EZCouch.Sweeper
                    EZCouch.Logging
                    EZCouch.Model.Error
                    EZCouch.Crash
  build-depends:    base >= 4.5 && < 5,
                    ghc-prim >= 0.2,
                    time >= 1.4,
                    aeson == 0.6.*,
                    attoparsec >= 0.10,
                    attoparsec-conduit >= 0.5,
                    http-conduit == 1.9.*,
                    http-types >= 0.7,
                    hslogger >= 1.2,
                    old-locale >= 1.0,
                    text >= 0.11,
                    containers >= 0.4,
                    unordered-containers >= 0.2,
                    bytestring >= 0.9,
                    blaze-builder >= 0.3,
                    mtl >= 2.1,
                    random >= 1.0,
                    resourcet >= 0.3,
                    string-conversions >= 0.2,
                    classy-prelude == 0.5.*,
                    classy-prelude-conduit == 0.5.*,
                    hashable >= 1.1,
                    vector,
                    neat-interpolation == 0.1.*

source-repository head
  type:             git
  location:         git://github.com/nikita-volkov/ez-couch.git