packages feed

product-profunctors-0.6: product-profunctors.cabal

name:          product-profunctors
version:       0.6
synopsis:      product-profunctors
description:   Product profunctors
homepage:      https://github.com/tomjaguarpaw/product-profunctors
license:       BSD3
license-File:  LICENSE
author:        Purely Agile
maintainer:    Purely Agile
category:      Control, Category
build-type:    Simple
cabal-version: >= 1.8

source-repository head
  Type:     git
  Location: https://github.com/tomjaguarpaw/product-profunctors

library
  build-depends:   base >= 4 && < 5
                 , profunctors >= 4.0 && < 4.3
                 , contravariant >= 0.4 && < 1.3
                 , template-haskell
  exposed-modules: Data.Profunctor.Product,
                   Data.Profunctor.Product.Default,
                   Data.Profunctor.Product.Flatten,
                   Data.Profunctor.Product.TH,
                   Data.Profunctor.Product.Tuples
  ghc-options:     -Wall

test-suite test
  type: exitcode-stdio-1.0
  main-is: Main.hs
  other-modules: CheckTypes,
                 Definitions
  hs-source-dirs: Test
  build-depends:
    base >= 4 && < 5,
    profunctors,
    product-profunctors
  ghc-options: -Wall