forked from IntersectMBO/plutus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
marlowe-dashboard-server.cabal
86 lines (82 loc) · 2 KB
/
marlowe-dashboard-server.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
cabal-version: >=1.10
name: marlowe-dashboard-server
version: 0.1.0.0
license: Apache-2.0
license-files:
LICENSE
NOTICE
author: David Smith
category: Web
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/iohk/plutus
library
exposed-modules:
Server
API
WebSocket
hs-source-dirs:
src
default-language: Haskell2010
build-depends:
aeson -any,
base >=4.7 && <5,
http-client -any,
http-client-tls -any,
monad-logger -any,
mtl -any,
playground-common -any,
servant >= 0.16,
servant-client -any,
servant-client-core -any,
servant-server -any,
servant-websockets -any,
text -any,
wai-app-static -any,
wai-cors -any,
websockets -any,
uuid -any
executable marlowe-dashboard-server
main-is: Main.hs
other-modules:
Webserver
PSGenerator
hs-source-dirs: app
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
-Wincomplete-uni-patterns -Wincomplete-record-updates
build-depends:
aeson -any,
base -any,
http-client -any,
http-client-tls -any,
http-types -any,
lens -any,
marlowe-dashboard-server -any,
monad-logger -any,
mtl -any,
playground-common -any,
plutus-ledger-api -any,
prometheus >=2,
purescript-bridge -any,
optparse-applicative -any,
servant-client -any,
servant-purescript -any,
servant-server -any,
text -any,
uuid -any,
wai -any,
wai-cors -any,
wai-extra -any,
warp -any
test-suite marlowe-dashboard-server-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base -any