-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreflex-host-examples.cabal
52 lines (49 loc) · 1.8 KB
/
reflex-host-examples.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
-- Initial reflex-host-examples.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: reflex-host-examples
version: 0.1.0.0
-- synopsis:
-- description:
license: BSD3
license-file: LICENSE
author: Dave Laing
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
exposed-modules: Host1
, Host2
, Host3
, Host4
, Host5
, Host6
-- , Host6.Test
, Interpret
-- , Interpret2
-- other-modules:
other-extensions: RankNTypes
build-depends: base >= 4.8 && < 4.13
, mtl >= 2.2 && < 2.3
, transformers >= 0.5 && < 0.6
, dependent-sum >= 0.3 && < 0.7
, dependent-map >= 0.2 && < 0.4
, ref-tf >= 0.4 && < 0.5
, lens >= 4.13 && < 5.0
, reflex >= 0.5 && < 0.7
, primitive >= 0.6 && < 0.7
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
test-suite doctests
default-language: Haskell2010
type: exitcode-stdio-1.0
ghc-options: -threaded
main-is: doctests.hs
build-depends: base >= 4.8 && < 4.13
, doctest >= 0.11 && < 0.17
, QuickCheck >= 2.8 && < 2.14
, reflex-host-examples
hs-source-dirs: tests