packages feed

either-list-functions-0.0.4.2: either-list-functions.cabal

name:     either-list-functions
version:  0.0.4.2
category: Data
synopsis: Functions involving lists of Either

description: Functions involving lists of Either.

homepage:    https://github.com/chris-martin/either-list-functions
bug-reports: https://github.com/chris-martin/either-list-functions/issues

author:     Chris Martin <ch.martin@gmail.com>
maintainer: Chris Martin <ch.martin@gmail.com>

license: Apache-2.0
license-file: license.txt

build-type: Simple
cabal-version: >= 1.10

extra-source-files:
  changelog.txt

source-repository head
  type: git
  location: https://github.com/chris-martin/either-list-functions

library
  default-language: Haskell2010
  hs-source-dirs: src
  ghc-options: -Wall
  exposed-modules: Data.List.EitherFunctions
  build-depends: base, containers

  -- require Data.Functor.Contravariant
  build-depends: base >=4.12

  -- upper bounds to exclude untested versions
  build-depends: base <4.14, containers <0.7

test-suite doctest
  default-language: Haskell2010
  type: exitcode-stdio-1.0
  main-is: doctest.hs
  ghc-options: -Wall -threaded
  hs-source-dirs: test
  build-depends: base, doctest, either-list-functions

  build-depends: base >=4.12

  -- upper bounds to exclude untested versions
  build-depends: base <4.14