name: do-list version: 1.0.1 synopsis: Do notation for free description: Please see README.md homepage: https://github.com/tserduke/do-list#readme bug-reports: https://github.com/tserduke/do-list/issues license: BSD3 license-file: LICENSE author: Taras Serduke maintainer: taras.serduke@gmail.com copyright: 2016 Taras Serduke category: Data, List, Syntax build-type: Simple cabal-version: >= 1.10 extra-doc-files: README.md changelog.md source-repository head type: git location: https://github.com/tserduke/do-list.git library hs-source-dirs: src exposed-modules: Data.DoList Data.DoMonoid build-depends: base < 5 default-language: Haskell2010 default-extensions: GeneralizedNewtypeDeriving TypeFamilies ghc-options: -Wall test-suite test type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Test.hs build-depends: base < 5, do-list, hspec default-language: Haskell2010 ghc-options: -Wall benchmark bench type: exitcode-stdio-1.0 hs-source-dirs: bench main-is: Bench.hs build-depends: base < 5, criterion, do-list, mtl, text default-language: Haskell2010 default-extensions: OverloadedStrings ghc-options: -O2 -Wall -fno-warn-unused-do-bind