packages feed

transformers-convert-0.2.0.0: transformers-convert.cabal

name:                transformers-convert
version:             0.2.0.0
synopsis:            Sensible conversions between some of the monad transformers
description:         Sensible conversions between MaybeT and EitherT monad transformers. 
homepage:            https://github.com/jcristovao/transformers-convert
license:             BSD3
license-file:        LICENSE
author:              João Cristóvão
maintainer:          jmacristovao@gmail.com
category:            Control
build-type:          Simple

-- Extra files to be distributed with the package, such as examples or a README.
-- extra-source-files:  

-- Constraint on the version of Cabal needed to build this package.
cabal-version:       >=1.18


library
  exposed-modules:    Control.Monad.Trans.Convert 

  -- Modules included in this library but not exported.
  -- other-modules:       
  
  -- Other library packages from which modules are imported.
  build-depends:       base           >= 4.6  && < 5
                     , transformers   >= 0.3  && < 0.5
                     , either         >= 4.0  && < 4.2
                     , data-easy      >= 0.4  && < 0.5
  
  -- Directories containing source files.
  hs-source-dirs:    src  
  
  -- Base language which the package is written in.
  default-language:    Haskell2010

  ghc-options:         -Wall
  
test-suite test
  type:           exitcode-stdio-1.0
  main-is:        main.hs
  hs-source-dirs: test, src
  build-depends:  base             >= 4.6     && < 5
                , transformers     >= 0.3     && < 0.5
                , either           >= 4.1.1   && < 4.2
                , data-easy        >= 0.4     && < 0.5
                , text             >= 0.11.3 
                , errors           >= 1.4.3   && < 1.5
                , directory        >= 1.2.0.1 && < 1.3
                , QuickCheck       >= 2.6     
                , HUnit            >= 1.2.5.2
                , hspec            >= 1.7.2
                , unix             >= 2.6
                , haskell-src-exts >= 1.14
                , hlint
  default-language : Haskell2010