-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathordrea.cabal
42 lines (38 loc) · 1.59 KB
/
ordrea.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
-- Initial ordrea.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: ordrea
version: 0.3.0.0
synopsis: Push-pull implementation of discrete-time FRP
description: This is an FRP library with the following characteristics:
.
* classical: it has first-class signals
.
* synchronous: it has a clear notion of simultaneous events
.
* higher-order: signals inside signals can be flattened
to get a switching behavior
.
* push-based: inactive events has zero runtime costs
.
This package is in the alpha stage.
license: PublicDomain
license-file: LICENSE
author: Takano Akio, Andrew Richards
maintainer: Takano Akio <[email protected]>
-- copyright:
category: FRP
build-type: Simple
cabal-version: >=1.8
library
exposed-modules: FRP.Ordrea
other-modules: FRP.Ordrea.Base, FRP.Ordrea.Weak, UnitTest
build-depends: base >= 4.5 && < 5, transformers >= 0.3, containers >= 0.4, vector >= 0.9, vector-space
cpp-options: -DNOTEST
test-suite unit-tests
type: exitcode-stdio-1.0
main-is: unit.hs
hs-source-dirs: tests
build-depends: base, process, directory, split, HUnit
source-repository head
type: git
location: https://github.com/takano-akio/ordrea.git