-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathreflex-transformers.cabal
79 lines (64 loc) · 1.83 KB
/
reflex-transformers.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
name: reflex-transformers
version: 0.3
license: BSD3
license-file: LICENSE
cabal-version: >= 1.10
Category: FRP
author: Oliver Batchelor
maintainer: [email protected]
stability: experimental
homepage: http://github.com/saulzar/reflex-transformers
bug-reports: http://github.com/saulzar/reflex-transformers/issues
copyright: Copyright (C) 2015 Oliver Batchelor
synopsis: Collections and switchable Monad transformers for Reflex
description:
This library provides a set of Monad transformers (and instances for common transformers) on top of
widget switching primitives for reflex. For example ReaderT and WriterT which operate in the presence
of widget switching, allowing you to pass inputs and outputs up and down the UI tree.
build-type: Simple
extra-source-files:
.ghci
.gitignore
.travis.yml
.vim.custom
README.md
source-repository head
type: git
location: https://github.com/saulzar/reflex-transformers.git
library
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >= 4.4 && < 5,
mtl >= 2.1 && < 2.3,
containers == 0.5.*,
reflex >= 0.3 && < 0.5,
transformers >= 0.2,
lens >= 4.7 && < 4.14,
semigroups >= 0.16 && < 0.18,
stateWriter >= 0.2.6 && < 0.3
default-extensions:
TupleSections
RecursiveDo
FlexibleInstances
FlexibleContexts
ConstraintKinds
StandaloneDeriving
FunctionalDependencies
RecordWildCards
TypeFamilies
GeneralizedNewtypeDeriving
MultiParamTypeClasses
ScopedTypeVariables
RankNTypes
GADTs
exposed-modules:
Reflex.Monad
Reflex.Monad.Class
Reflex.Monad.ReflexM
Reflex.Monad.Supply
Reflex.Monad.ReaderWriter
Reflex.Switching
Reflex.Updated
ghc-options: -Wall