cabal-version: 2.4 name: loop-dsl version: 0.1.0.0 synopsis: monadic loop dsl. description: A simple loop dsl for monadic actions. homepage: https://github.com/ailrk/loop-dsl bug-reports: https://github.com/ailrk/loop-dsl/issues -- The license under which the package is released. license: MIT author: ailrk maintainer: jimmy123good@gmail.com -- A copyright notice. copyright: (c) Ailrk 2021 category: Control extra-source-files: CHANGELOG.md source-repository head type: git location: https://github.com/ailrk/loop-dsl.git library exposed-modules: Control.Monad.Loop Control.Monad.Loop.Internal -- LANGUAGE extensions used by modules in this package. -- other-extensions: build-depends: base ^>=4.14.1.0 , transformers , mtl hs-source-dirs: src default-language: Haskell2010 test-suite test type: exitcode-stdio-1.0 main-is: tests/Main.hs default-language: Haskell2010 build-depends: base >= 4 && < 5 , loop-dsl , hspec , transformers , mtl , vector