-
Notifications
You must be signed in to change notification settings - Fork 1
/
natural-transformation.cabal
60 lines (56 loc) · 2.35 KB
/
natural-transformation.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
52
53
54
55
56
57
58
59
60
name: natural-transformation
version: 0.4.1
synopsis: A natural transformation package.
description: A natural transformation transforms a container @f a@ into another
container @g a@. Natural transformations act as functor morphisms
in category theory.
.
The naming of '~>', ':~>' and '$$' were taken,
with permission, from Edward Kmett's @indexed@ package.
homepage: https://github.com/ku-fpg/natural-transformation
bug-reports: https://github.com/ku-fpg/natural-transformation/issues
license: BSD3
license-file: LICENSE
stability: Provisional
author: Andy Gill
maintainer: Andy Gill <andygill@ku.edu>
copyright: Copyright (c) 2015-2016 The University of Kansas
category: Control
build-type: Simple
extra-source-files: CHANGELOG.md, README.md
tested-with: GHC == 8.0.2
, GHC == 8.2.2
, GHC == 8.4.4
, GHC == 8.6.5
, GHC == 8.8.4
, GHC == 8.10.7
, GHC == 9.0.2
, GHC == 9.2.8
, GHC == 9.4.8
, GHC == 9.6.6
, GHC == 9.8.2
, GHC == 9.10.1
cabal-version: >= 1.10
source-repository head
type: git
location: https://github.com/ku-fpg/natural-transformation
library
exposed-modules: Control.Natural
Control.Natural.RULES
Control.Object
build-depends: base >= 4.9 && < 5
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
test-suite natural-transformation-properties
type: exitcode-stdio-1.0
main-is: Properties.hs
build-depends: base >= 4.9 && < 5
, containers >= 0.1 && < 0.8
, natural-transformation
, quickcheck-instances >= 0.1 && < 0.4
, tasty >= 0.8 && < 1.6
, tasty-quickcheck >= 0.8 && < 0.11
hs-source-dirs: tests
default-language: Haskell2010
ghc-options: -Wall