-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathearthquake.cabal
86 lines (81 loc) · 3.49 KB
/
earthquake.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
78
79
80
81
82
83
84
85
86
name: earthquake
version: 0.1
synopsis: The Elm Architecture, Revisited
description: MVC framework for the Haskell javascript-bridge, inspired by Elm
license: BSD3
license-file: LICENSE
author: Andy Gill
maintainer: [email protected]
copyright: Copyright (c) 2019 The University of Kansas
category: Network
build-type: Simple
extra-source-files: CHANGELOG.md, README.md, HISTORY.md
cabal-version: >=1.10
tested-with: GHC == 8.0.2
, GHC == 8.2.2
, GHC == 8.4.4
, GHC == 8.6.5
, GHC == 8.8.1
data-files:
examples/UpDown.html
examples/Slider.html
examples/Sliders.html
todomvc/index.html
source-repository head
type: git
location: https://github.com/ku-fpg/earthquake
library
exposed-modules: Network.Earthquake.Cmd,
Network.Earthquake.Remote,
Network.Earthquake.Update,
Network.Earthquake.Widget,
Network.Earthquake.Widget.Button,
Network.Earthquake.Widget.Slider,
Network.Earthquake.Runtime,
Network.JavaScript.Widgets
-- other-modules:
-- other-extensions:
build-depends: base >= 4.9 && < 4.14
, binary >= 0.8 && < 0.9
, aeson >= 1.0 && < 1.5
, containers >= 0.5 && < 0.7
, free >= 4.12 && < 5.2
, scientific >= 0.3.4.9 && < 0.4
, stm >= 2.4 && < 2.6
, text >= 1.2 && < 1.3
, transformers >= 0.4 && < 0.6
, unordered-containers >= 0.2.7 && < 0.3
, wai >= 3.2 && < 3.3
, wai-websockets >= 3.0.1 && < 3.1
, websockets >= 0.10 && < 0.13
, lens-family >= 1.2.1 && < 1.3
, bifunctors >= 5.0 && < 6.0
, javascript-bridge >= 0.2.0 && < 0.3
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
executable earthquake-up-down
main-is: UpDown.hs
other-modules: Paths_earthquake
build-depends: base >= 4.9 && < 4.14
, earthquake
, aeson >= 1.0 && < 1.5
, javascript-bridge == 0.2.*
, scotty == 0.11.*
hs-source-dirs: examples
default-language: Haskell2010
ghc-options: -threaded -Wall
executable earthquake-todo
main-is: ToDo.hs
other-modules: Paths_earthquake
, Task
build-depends: base >= 4.9 && < 4.14
, earthquake
, aeson >= 1.0 && < 1.5
, text >= 1.2 && < 1.3
, javascript-bridge == 0.2.*
, scotty == 0.11.*
, wai-extra == 3.*
hs-source-dirs: todomvc
default-language: Haskell2010
ghc-options: -threaded -Wall