-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathprofunctor-monad.cabal
51 lines (48 loc) · 1.38 KB
/
profunctor-monad.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
name: profunctor-monad
version: 0.2.0.0
synopsis: Monadic bidirectional programming
description:
Applicative and monadic interface for bidirectional programming.
homepage: https://github.com/Lysxia/profunctor-monad
license: MIT
license-file: LICENSE
author: Li-yao Xia, Samantha Frohlich, Dominic Orchard, Meng Wang
maintainer: [email protected]
category: Control
build-type: Simple
extra-source-files: README.md, CHANGELOG.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules:
Profunctor.Monad
Profunctor.Monad.Cofunctor
Profunctor.Monad.Core
Profunctor.Monad.Combinators
Profunctor.Monad.Lifts
Profunctor.Monad.Monad
Profunctor.Monad.MonadCoAction
Profunctor.Monad.Profunctor
Profunctor.Monad.Syntax
build-depends:
base >= 4.9 && < 4.17,
constraints,
profunctors
default-language: Haskell2010
ghc-options: -Wall -Wno-name-shadowing
test-suite hashcons
type: exitcode-stdio-1.0
main-is: hashcons.hs
hs-source-dirs: example
build-depends:
base,
unordered-containers,
hashable,
mtl,
transformers,
profunctor-monad
default-language: Haskell2010
ghc-options: -Wall -Wno-name-shadowing
source-repository head
type: git
location: https://github.com/Lysxia/profunctor-monad