-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgasp.cabal
55 lines (44 loc) · 1.3 KB
/
gasp.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
name: gasp
version: 1.4.0.0
category: Algebra
synopsis: A framework of algebraic classes
description:
One algebraic classes framework to rule them all.
license: BSD3
license-file: LICENSE
author: Jean-Philippe Bernardy
maintainer: [email protected]
Cabal-Version: 1.12
tested-with: GHC==9.2.1
build-type: Simple
source-repository head
type: git
location: https://github.com/jyp/gasp
library
default-language: Haskell2010
build-depends: base>=4 && <5
build-depends: containers
build-depends: binary
build-depends: mtl
build-depends: constraints
build-depends: distributive, adjunctions
-- for representable functors
build-depends: QuickCheck
exposed-modules:
Algebra.Classes
Algebra.Types
Algebra.Morphism.Affine
Algebra.Morphism.Exponential
Algebra.Morphism.LinComb
Algebra.Morphism.Ratio
Algebra.Morphism.Pointwise
Algebra.Category
Algebra.Category.Laws
Algebra.Category.Objects
Algebra.Category.Relation
Algebra.Category.Endo
Algebra.Category.Op
Algebra.Category.NatTrans
Algebra.Category.BlockMatrix
Algebra.CategoryRecords
Algebra.Linear