-
Notifications
You must be signed in to change notification settings - Fork 43
/
profunctors.cabal
80 lines (71 loc) · 2.07 KB
/
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
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
cabal-version: 2.4
name: profunctors
category: Control, Categories
version: 6
license: BSD-2-Clause
license-file: LICENSE
author: Edward A. Kmett
maintainer: Edward A. Kmett <ekmett@gmail.com>
stability: experimental
homepage: http://github.com/ekmett/profunctors/
bug-reports: http://github.com/ekmett/profunctors/issues
copyright: Copyright (C) 2011-2021 Edward A. Kmett
synopsis: Profunctors
description: Profunctors.
tested-with: GHC == 8.6.5
, GHC == 8.8.4
, GHC == 8.10.7
, GHC == 9.0.2
, GHC == 9.2.8
, GHC == 9.4.7
, GHC == 9.6.3
build-type: Simple
extra-source-files:
.gitignore
.hlint.yaml
.vim.custom
README.markdown
CHANGELOG.markdown
source-repository head
type: git
location: git://github.com/ekmett/profunctors.git
library
build-depends:
, base >= 4.12 && < 5
, base-orphans >= 0.8.4 && < 0.10
, bifunctors ^>= 6
, comonad ^>= 6
, contravariant ^>= 1.6
, tagged ^>= 0.8.6.1
, transformers >= 0.5 && < 0.7
other-modules:
Data.Profunctor.Internal
exposed-modules:
Data.Profunctor
Data.Profunctor.Adjunction
Data.Profunctor.Cayley
Data.Profunctor.Choice
Data.Profunctor.Composition
Data.Profunctor.Day
Data.Profunctor.Functor
Data.Profunctor.Functor.Fix
Data.Profunctor.Monad
Data.Profunctor.Monoidal
Data.Profunctor.Ran
Data.Profunctor.Strong
Data.Profunctor.Traversing
Data.Profunctor.Types
Data.Profunctor.Unsafe
Data.Profunctor.Yoneda
-- moved to distributive
-- Data.Profunctor.Mapping
-- Data.Profunctor.Closed
-- Data.Profunctor.Rep
-- Data.Profunctor.Sieve
ghc-options: -Wall -O2 -Wno-trustworthy-safe -Wno-star-is-type
if impl(ghc >= 9.0)
-- these flags may abort compilation with GHC-8.10
-- https://gitlab.haskell.org/ghc/ghc/-/merge_requests/3295
ghc-options: -Winferred-safe-imports -Wmissing-safe-haskell-mode
hs-source-dirs: src
default-language: Haskell2010