packages feed

commandert-0.1.0.0: commandert.cabal

cabal-version:       2.4

name:                commandert
version:             0.1.0.0
synopsis:            A monad for commanders
description:         A monad for commanders.
homepage:            https://github.com/SamuelSchlesinger/commandert
bug-reports:         https://github.com/SamuelSchlesinger/commander/issues
license:             MIT
license-file:        LICENSE
author:              Samuel Schlesinger
maintainer:          sgschlesinger@gmail.com
copyright:           2019 Samuel Schlesinger
category:            Control
extra-source-files:  README.md
tested-with:         GHC ==8.6.5 || ==8.8.4 || ==8.10.2

source-repository head
  type: git 
  location: https://github.com/samuelschlesinger/commander

library
  exposed-modules:     Control.Monad.Commander
  build-depends:       base >=4.12 && < 4.15,
                       mtl >=2.2,
  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite commander-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Test.hs
  build-depends:       base >=4.12 && <4.15,
                       hspec >=2.7.4,
                       mtl >=1.0,
                       commandert
  default-language:    Haskell2010