packages feed

either-list-functions-0.0.2.0: either-list-functions.cabal

name:     either-list-functions
version:  0.0.2.0
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

  build-depends:
      base >=4.9 && <4.13

  exposed-modules:
      Data.List.EitherFunctions

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 >=4.9 && <4.13
    , doctest
    , either-list-functions