-
Notifications
You must be signed in to change notification settings - Fork 13
/
product-profunctors.cabal
51 lines (47 loc) · 1.65 KB
/
product-profunctors.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: product-profunctors
copyright: Copyright (c) 2013, Karamaan Group LLC; 2014-2016 Purely Agile Limited
version: 0.7.1.0
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
tested-with: GHC==7.10.1, GHC==7.8.4, GHC==7.6.3
source-repository head
type: git
location: https://github.com/tomjaguarpaw/product-profunctors
library
build-depends: base >= 4.5 && < 5
, profunctors >= 4.0 && < 5.3
, contravariant >= 0.4 && < 1.5
, tagged >= 0.0 && < 1
, template-haskell
exposed-modules: Data.Profunctor.Product,
Data.Profunctor.Product.Default,
Data.Profunctor.Product.Flatten,
Data.Profunctor.Product.Internal.TH,
Data.Profunctor.Product.Newtype,
Data.Profunctor.Product.TH,
Data.Profunctor.Product.Tuples
Data.Profunctor.Product.Tuples.TH
other-modules: Data.Profunctor.Product.Class,
Data.Profunctor.Product.Default.Class
ghc-options: -Wall
if impl(ghc < 7.10)
build-depends: transformers >= 0.2 && < 0.6
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