-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathkan-extensions.cabal
85 lines (77 loc) · 2.48 KB
/
kan-extensions.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
name: kan-extensions
category: Data Structures, Monads, Comonads, Functors
version: 5.2.6
license: BSD3
cabal-version: >= 1.10
license-file: LICENSE
author: Edward A. Kmett
maintainer: Edward A. Kmett <[email protected]>
stability: provisional
homepage: http://github.com/ekmett/kan-extensions/
bug-reports: http://github.com/ekmett/kan-extensions/issues
copyright: Copyright (C) 2008-2016 Edward A. Kmett
synopsis: Kan extensions, Kan lifts, the Yoneda lemma, and (co)density (co)monads
description: Kan extensions, Kan lifts, various forms of the Yoneda lemma, and (co)density (co)monads.
build-type: Simple
tested-with: 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
extra-source-files:
.gitignore
.vim.custom
CHANGELOG.markdown
README.markdown
source-repository head
type: git
location: git://github.com/ekmett/kan-extensions.git
library
hs-source-dirs: src
other-extensions:
CPP
MultiParamTypeClasses
GADTs
Rank2Types,
FlexibleInstances
FlexibleContexts
UndecidableInstances
TypeFamilies
build-depends:
adjunctions >= 4.2 && < 5,
array >= 0.3.0.2 && < 0.6,
base >= 4.11 && < 5,
comonad >= 4 && < 6,
containers >= 0.4 && < 0.8,
contravariant >= 1 && < 2,
distributive >= 0.2.2 && < 1,
invariant >= 0.1 && < 1,
free >= 4 && < 6,
mtl >= 2.2.1 && < 2.4,
profunctors >= 5 && < 6,
semigroupoids >= 5.2.2 && < 7,
tagged >= 0.7.2 && < 1,
transformers >= 0.5 && < 0.7
exposed-modules:
Control.Comonad.Density
Control.Monad.Co
Control.Monad.Codensity
Data.Functor.Contravariant.Day
Data.Functor.Contravariant.Yoneda
Data.Functor.Contravariant.Coyoneda
Data.Functor.Day
Data.Functor.Day.Curried
Data.Functor.Invariant.Day
Data.Functor.Kan.Lan
Data.Functor.Kan.Ran
Data.Functor.Yoneda
Data.Functor.Coyoneda
ghc-options: -Wall -Wcompat -Wnoncanonical-monad-instances -Wno-trustworthy-safe
if !impl(ghc >= 8.8)
ghc-options: -Wnoncanonical-monadfail-instances
default-language: Haskell2010