packages feed

either-list-functions-0.0.4.8: either-list-functions.cabal

cabal-version: 3.0

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

description: Functions involving lists of Either.

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

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

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

extra-source-files: *.md

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

common base
    default-language: Haskell2010
    ghc-options: -Wall
    build-depends:
      , base ^>= 4.18 || ^>= 4.19

library
    import: base
    hs-source-dirs: src
    exposed-modules: Data.List.EitherFunctions
    build-depends:
      , containers ^>= 0.6.4

test-suite doctest
    import: base
    type: exitcode-stdio-1.0
    main-is: doctest.hs
    ghc-options: -threaded
    hs-source-dirs: test
    build-depends:
      , doctest ^>= 0.22 || ^>= 0.23
      , either-list-functions