packages feed

church-pair-0.1.0.1: church-pair.cabal

name:                church-pair
version:             0.1.0.1
license:             BSD3
license-file:        LICENSE
author:              Matthew Harm Bekkema
maintainer:          mbekkema97@gmail.com
bug-reports:         https://github.com/mat8913/church-pair/issues
synopsis:            Church encoded pair
category:            Data
description:
    This package contains a Church encoded 'Pair' type along with appropriate
    instances for typeclasses in 'base'.
cabal-version:       >=1.10
build-type:          Simple

extra-source-files:  CHANGELOG.md

source-repository head
  type: git
  location: https://github.com/mat8913/church-pair


library
  default-language:    Haskell98

  other-extensions:    Safe
                       Rank2Types

  build-depends:       base >= 4.5 && < 5
                     , semigroups >= 0.17 && < 1
                     , transformers >= 0.5 && < 1
                     , bifunctors < 6

  exposed-modules:     Data.Church.Pair
  ghc-options:         -Wall