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 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
Name: reactive-banana
Version: 1.3.2.0
x-revision : 4
Synopsis: Library for functional reactive programming (FRP).
Description:
Reactive-banana is a library for Functional Reactive Programming (FRP).
.
FRP offers an elegant and concise way to express interactive programs such as graphical user interfaces, animations, computer music or robot controllers. It promises to avoid the spaghetti code that is all too common in traditional approaches to GUI programming.
.
See the project homepage <http://wiki.haskell.org/Reactive-banana>
for more detailed documentation and examples.
.
/Stability forecast./
This is a stable library, though minor API changes are still likely.
It features an efficient, push-driven implementation
and has seen some optimization work.
.
/API guide./
Start with the "Reactive.Banana" module.
Homepage: http://wiki.haskell.org/Reactive-banana
License: BSD3
License-file: LICENSE
Author: Heinrich Apfelmus
Maintainer: Heinrich Apfelmus <apfelmus quantentunnel de>
Category: FRP
Cabal-version: 1.18
Build-type: Simple
Tested-with:
GHC == 9.8.1
, GHC == 9.6.3
, GHC == 9.4.8
, GHC == 9.2.8
, GHC == 8.10.7
, GHC == 8.8.4
, GHC == 8.6.5
, GHC == 8.4.4
extra-source-files: CHANGELOG.md,
doc/examples/*.hs
extra-doc-files: doc/*.png
Source-repository head
type: git
location: https://github.com/HeinrichApfelmus/reactive-banana
subdir: reactive-banana/
Library
default-language: Haskell98
hs-source-dirs: src
build-depends: base >= 4.2 && < 5,
deepseq >= 1.4.3.0 && < 1.6,
semigroups >= 0.13 && < 0.21,
containers >= 0.5 && < 0.8,
transformers >= 0.2 && < 0.7,
vault == 0.3.*,
unordered-containers >= 0.2.1.0 && < 0.3,
hashable >= 1.1 && < 1.5,
pqueue >= 1.0 && < 1.6,
stm >= 2.5 && < 2.6,
these >= 0.2 && < 1.3
exposed-modules:
Control.Event.Handler,
Reactive.Banana,
Reactive.Banana.Combinators,
Reactive.Banana.Frameworks,
Reactive.Banana.Model,
Reactive.Banana.Prim.Mid,
Reactive.Banana.Prim.High.Cached,
Reactive.Banana.Prim.Low.Graph,
Reactive.Banana.Prim.Low.GraphGC,
Reactive.Banana.Prim.Low.Ref
other-modules:
Control.Monad.Trans.ReaderWriterIO,
Control.Monad.Trans.RWSIO,
Reactive.Banana.Prim.Low.OrderedBag,
Reactive.Banana.Prim.Low.GraphTraversal,
Reactive.Banana.Prim.Mid.Combinators,
Reactive.Banana.Prim.Mid.Compile,
Reactive.Banana.Prim.Mid.Evaluation,
Reactive.Banana.Prim.Mid.IO,
Reactive.Banana.Prim.Mid.Plumbing,
Reactive.Banana.Prim.Mid.Test,
Reactive.Banana.Prim.Mid.Types,
Reactive.Banana.Prim.High.Combinators,
Reactive.Banana.Types
ghc-options: -Wall -Wcompat -Werror=incomplete-record-updates -Werror=incomplete-uni-patterns -Werror=missing-fields -Werror=partial-fields -Wno-name-shadowing
Test-Suite unit
default-language: Haskell98
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: reactive-banana-tests.hs
other-modules: Reactive.Banana.Test.High.Combinators,
Reactive.Banana.Test.High.Plumbing,
Reactive.Banana.Test.High.Space,
Reactive.Banana.Test.Mid.Space,
Reactive.Banana.Test.Low.Gen,
Reactive.Banana.Test.Low.Graph,
Reactive.Banana.Test.Low.GraphGC
build-depends: base >= 4.7 && < 5,
containers,
deepseq >= 1.4.3.0 && < 1.6,
hashable,
pqueue,
reactive-banana,
semigroups,
transformers,
tasty,
tasty-hunit,
tasty-quickcheck >= 0.10.1.2 && < 0.12,
QuickCheck >= 2.10 && < 2.16,
unordered-containers,
vault,
these
Benchmark space
default-language: Haskell2010
type: exitcode-stdio-1.0
build-depends: base
, reactive-banana
, tasty-quickcheck
, tasty
, QuickCheck
hs-source-dirs: test
main-is: space.hs
other-modules: Reactive.Banana.Test.Mid.Space
, Reactive.Banana.Test.High.Space
ghc-options: -rtsopts -eventlog
Benchmark benchmark
default-language: Haskell2010
type: exitcode-stdio-1.0
build-depends: base
, reactive-banana
, containers
, random
, tasty
, tasty-bench
hs-source-dirs: benchmark
main-is: Main.hs
ghc-options: "-with-rtsopts=-A32m"
|