packages feed

amqp-conduit-0.1.0.1: amqp-conduit.cabal

name:                amqp-conduit
version:             0.1.0.1
synopsis:            Conduit bindings for AMQP (see amqp package)
description:         Conduit bindings for AMQP (see amqp package)
Stability:           alpha
license:             MIT
license-file:        LICENSE
author:              Toru Tomita
copyright:           Copyright (c) 2015, Toru Tomita
-- patches.
maintainer:          toru.tomita@gmail.com
category:            Network
build-type:          Simple
Homepage:            http://github.com/tatac1/amqp-conduit/
-- Extra files to be distributed with the package, such as examples or a 
-- README.
-- extra-source-files:  

cabal-version:       >=1.8

source-repository head
    type:     git
    location: https://github.com/tatac1/amqp-conduit

library
  -- Modules exported by the library.
  exposed-modules:    Network.AMQP.Conduit
  
  -- Modules included in this library but not exported.
  -- other-modules:      
  
  -- LANGUAGE extensions used by modules in this package.
  -- other-extensions:    
  
  -- Other library packages from which modules are imported.
  build-depends:       base >=4.7 && <4.8
                     , conduit >= 1.2
                     , amqp >= 0.10
                     , resourcet 
                     , transformers
                     , lifted-base
                     , exceptions
                     , transformers-base
                     , mtl >= 2.1
                     , monad-control
                     , text
  
  -- Directories containing source files.
  hs-source-dirs:      src     
  ghc-options:         -Wall -fwarn-incomplete-patterns -O2


test-suite test-amqp-conduit
  build-depends:       amqp-conduit
                     , base >=4.7 && <4.8
                     , resourcet
                     , conduit
                     , bytestring
                     , amqp
                     , transformers
                     , hspec >=2.0 && <2.1
                     , HUnit == 1.2.5.*
  type: exitcode-stdio-1.0
  main-is: test.hs
  hs-source-dirs: test
  ghc-options: -Wall