-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathreact-hs.cabal
30 lines (27 loc) · 947 Bytes
/
react-hs.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
-- Initial react-hs.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: react-hs
version: 0.1.0.0
synopsis: Discrete-time reactive programming for Haskell
-- description:
homepage: http://travis.athougies.net/projects/react-hs
license: GPL-2
license-file: LICENSE
author: Travis Athougies
maintainer: [email protected]
-- copyright:
category: Control
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules: React
-- other-modules:
-- other-extensions:
build-depends: base >=4.7 && <4.8, containers >=0.5 && <0.6, mtl
hs-source-dirs: src
default-language: Haskell2010
executable test
main-is: test.hs
build-depends: base, react-hs, mtl
default-language: Haskell2010