cabal-version: 3.0 name: list-t version: 1.0.5.7 synopsis: ListT done right description: A correct implementation of the list monad-transformer. Useful for basic streaming. category: Streaming, Data Structures, Control homepage: https://github.com/nikita-volkov/list-t bug-reports: https://github.com/nikita-volkov/list-t/issues author: Nikita Volkov maintainer: Nikita Volkov copyright: (c) 2014, Nikita Volkov license: MIT license-file: LICENSE source-repository head type: git location: git://github.com/nikita-volkov/list-t.git common language-settings default-extensions: NoImplicitPrelude NoMonomorphismRestriction BangPatterns ConstraintKinds DataKinds DefaultSignatures DeriveDataTypeable DeriveFunctor DeriveGeneric DeriveTraversable EmptyDataDecls FlexibleContexts FlexibleInstances FunctionalDependencies GADTs GeneralizedNewtypeDeriving LambdaCase LiberalTypeSynonyms MagicHash MultiParamTypeClasses MultiWayIf OverloadedStrings ParallelListComp PatternGuards PolyKinds QuasiQuotes RankNTypes RecordWildCards ScopedTypeVariables StandaloneDeriving TemplateHaskell TupleSections TypeFamilies TypeOperators UnboxedTuples UndecidableInstances default-language: Haskell2010 library import: language-settings hs-source-dirs: library exposed-modules: ListT other-modules: ListT.Prelude build-depends: , base >=4.11 && <5 , foldl >=1.2 && <2 , logict >=0.7 && <0.9 , mmorph >=1 && <2 , monad-control >=0.3 && <2 , mtl >=2 && <3 , transformers >=0.3 && <0.7 , transformers-base ^>=0.4 if impl(ghc <8.0) build-depends: semigroups >=0.11 && <0.21 test-suite htf-test import: language-settings type: exitcode-stdio-1.0 hs-source-dirs: htf-test main-is: Main.hs build-depends: , base-prelude , HTF ^>=0.15 , list-t , mmorph , mtl-prelude <3