packages feed

consumers-2.0.0.1: consumers.cabal

name:               consumers
version:            2.0.0.1
synopsis:           Concurrent PostgreSQL data consumers

description:        Library for setting up concurrent consumers of data
                    stored inside PostgreSQL database in a simple,
                    declarative manner.

homepage:           https://github.com/scrive/consumers
license:            BSD3
license-file:       LICENSE
author:             Scrive AB
maintainer:         Andrzej Rybczak <andrzej@rybczak.net>,
                    Jonathan Jouty <jonathan@scrive.com>
copyright:          Scrive AB
category:           Concurrency, Database
build-type:         Simple
cabal-version:      >=1.10
tested-with:        GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.1

Source-repository head
  Type:             git
  Location:         https://github.com/scrive/consumers.git

library
  exposed-modules:  Database.PostgreSQL.Consumers,
                    Database.PostgreSQL.Consumers.Config,
                    Database.PostgreSQL.Consumers.Consumer,
                    Database.PostgreSQL.Consumers.Components,
                    Database.PostgreSQL.Consumers.Utils

  build-depends:    base <5,
                    containers,
                    exceptions,
                    hpqtypes >=1.5,
                    lifted-base,
                    lifted-threads,
                    log-base >= 0.7,
                    monad-control,
                    mtl,
                    stm,
                    time,
                    transformers-base

  hs-source-dirs:   src

  ghc-options:      -O2 -Wall -funbox-strict-fields

  default-language: Haskell2010
  default-extensions: DeriveDataTypeable
                    , FlexibleContexts
                    , GeneralizedNewtypeDeriving
                    , NoImplicitPrelude
                    , OverloadedStrings
                    , RankNTypes
                    , RecordWildCards
                    , ScopedTypeVariables
                    , TupleSections
                    , TypeFamilies
                    , UndecidableInstances