-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjavascript-bridge.cabal
86 lines (80 loc) · 3.44 KB
/
javascript-bridge.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: javascript-bridge
version: 0.2.0
synopsis: Remote Monad for JavaScript on the browser
description: Bridge from Haskell to JavaScript on the browser
license: BSD3
license-file: LICENSE
author: Andy Gill
maintainer: [email protected]
copyright: Copyright (c) 2016-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.4.4
, GHC == 8.6.5
, GHC == 8.8.4
, GHC == 8.10.7
, GHC == 9.0.2
, GHC == 9.2.8
, GHC == 9.4.8
, GHC == 9.6.6
, GHC == 9.8.4
, GHC == 9.10.1
, GHC == 9.12.1
data-files:
examples/Main.html
source-repository head
type: git
location: https://github.com/ku-fpg/javascript-bridge
library
exposed-modules: Network.JavaScript,
Network.JavaScript.Internal,
Network.JavaScript.Services
build-depends: base >= 4.11 && < 4.22
, binary >= 0.8 && < 0.9
, aeson >= 1.4 && < 2.3
, containers >= 0.5 && < 0.8
, stm >= 2.4 && < 2.6
, text >= 1.2 && < 2.2
, time >= 1.6 && < 1.15
, transformers >= 0.4 && < 0.7
, wai >= 3.2 && < 3.3
, wai-websockets >= 3.0.1 && < 3.1
, websockets >= 0.10 && < 0.14
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
test-suite javascript-bridge-test
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends: base >= 4.11 && < 4.22
, aeson >= 1.0 && < 2.3
, javascript-bridge
, scotty >= 0.11 && < 0.23
, wai-extra >= 3.0 && < 3.2
, stm >= 2.4 && < 2.6
, text >= 1.2 && < 2.2
, time >= 1.6 && < 1.15
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -threaded -Wall
executable javascript-bridge-simple
main-is: Main.hs
other-modules: Paths_javascript_bridge
build-depends: base >= 4.11 && < 4.22
, javascript-bridge
, scotty >= 0.11 && < 0.23
hs-source-dirs: examples
default-language: Haskell2010
ghc-options: -threaded -Wall
executable javascript-bridge-examples
main-is: Multi.hs
other-modules: Paths_javascript_bridge
build-depends: base >= 4.11 && < 4.22
, javascript-bridge
, scotty >= 0.11 && < 0.23
, text >= 1.2 && < 2.2
hs-source-dirs: examples
default-language: Haskell2010
ghc-options: -threaded -Wall