packages feed

monus-0.1.0.0: monus.cabal

cabal-version:  2.2
name:           monus
version:        0.1.0.0
description:    Please see the README on GitHub at <https://github.com/andrewthad/monus#readme>
homepage:       https://github.com/andrewthad/monus#readme
bug-reports:    https://github.com/andrewthad/monus/issues
author:         Andrew Martin
maintainer:     andrew.thaddeus@gmail.com
copyright:      2018 Andrew Martin
license:        BSD-3-Clause
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    ChangeLog.md
    README.md

source-repository head
  type: git
  location: https://github.com/andrewthad/monus

library
  exposed-modules:
    Data.Monoid.Monus
    Data.Monoid.Monus.Generic
    Data.Map.Annihilate
  hs-source-dirs: src
  build-depends:
    , base >=4.5 && <5
    , containers >= 0.4.2.1
  default-language: Haskell2010

test-suite test
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs: test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
    , base
    , containers
    , smallcheck
    , monus
    , tasty
    , tasty-smallcheck
    , tasty-quickcheck
  default-language: Haskell2010