-
Notifications
You must be signed in to change notification settings - Fork 42
/
bifunctors.cabal
101 lines (93 loc) · 2.67 KB
/
bifunctors.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
cabal-version: 2.4
name: bifunctors
category: Data, Functors
version: 6
license: BSD-2-Clause OR Apache-2.0
license-file: LICENSE
author: Edward A. Kmett
maintainer: Edward A. Kmett <[email protected]>
stability: provisional
homepage: http://github.com/ekmett/bifunctors/
bug-reports: http://github.com/ekmett/bifunctors/issues
copyright: Copyright (C) 2008-2023 Edward A. Kmett
synopsis: Bifunctors
description: Bifunctors.
build-type: Simple
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.8
, GHC == 9.6.4
, GHC == 9.8.2
, GHC == 9.10.1
extra-source-files:
CHANGELOG.markdown
README.markdown
.reuse/dep5
LICENSES/*.txt
source-repository head
type: git
location: https://github.com/ekmett/bifunctors.git
library
hs-source-dirs: src
build-depends:
, base >= 4.12 && < 5
, assoc >= 1.1 && < 1.2
, base-orphans >= 0.8.4 && < 1
, comonad ^>= 6
, containers >= 0.6.0.1 && < 0.8
, tagged >= 0.8.6 && < 1
, template-haskell
, th-abstraction >= 0.4.2.0 && < 0.8
, transformers >= 0.5 && < 0.7
if !impl(ghc >= 9.6)
build-depends: foldable1-classes-compat >= 0.1 && < 0.2
exposed-modules:
Data.Biapplicative
Data.Biapplicative.Backwards
Data.Bifunctor.Biap
Data.Bifunctor.Biff
Data.Bifunctor.Classes
Data.Bifunctor.Clown
Data.Bifunctor.Day
Data.Bifunctor.Fix
Data.Bifunctor.Flip
Data.Bifunctor.Functor
Data.Bifunctor.Functor.Fix
Data.Bifunctor.Join
Data.Bifunctor.Joker
Data.Bifunctor.Monoid
Data.Bifunctor.Product
Data.Bifunctor.Reverse
Data.Bifunctor.Sum
Data.Bifunctor.Tannen
Data.Bifunctor.TH
Data.Bifunctor.Wrapped
Data.Bifunctor.Yoneda
other-modules:
Data.Bifunctor.TH.Internal
Data.Bifunctor.Unsafe
Data.Bifunctor.ShowRead
ghc-options: -Wall
default-language: Haskell2010
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
test-suite bifunctors-spec
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Spec.hs
other-modules: BifunctorSpec T89Spec
ghc-options: -Wall -Wno-star-is-type
default-language: Haskell2010
build-tool-depends: hspec-discover:hspec-discover >= 1.8
build-depends:
, base
, bifunctors
, hspec >= 1.8
, QuickCheck >= 2 && < 3
, template-haskell
, transformers