packages feed

ListT-0.1.2.0: ListT.cabal

name:                ListT
version:             0.1.2.0
synopsis:            List transformer
-- description:         
license:             BSD3
license-file:        LICENSE
author:              M Farkas-Dyck
maintainer:          m.farkasdyck@gmail.com
-- copyright:           
category:            Control
build-type:          Simple
--extra-source-files:  
cabal-version:       >=1.10
tested-with:         GHC ==8.0.2,
                     GHC ==8.2.1

library
  exposed-modules:     Control.Monad.Trans.List
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.9 && <5
                     , transformers
                     , util >=0.1.4 && <0.2
  -- hs-source-dirs:      
  default-language:    Haskell2010
  default-extensions:  LambdaCase
  ghc-options:         -Wall -Wno-name-shadowing

test-suite tests
  type:                exitcode-stdio-1.0
  main-is:             test.hs
  other-modules:       Test.List
  build-depends:       ListT
                     , base >=4.9 && <5
                     , smallcheck >=1.1.2 && <1.2
                     , tasty >=0.11 && <0.12
                     , tasty-smallcheck >=0.8.1 && <0.9
                     , transformers
                     , util >=0.1.4 && <0.2
  default-language:    Haskell2010
  default-extensions:  LambdaCase