-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathaesd-records.cabal
184 lines (176 loc) · 6.17 KB
/
aesd-records.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
name : aesd-records
version : 0.5.0.0
synopsis : AESD Records
description :
Implementation of AESD Records API, include a skeletal server and client.
.
The executable program /aesd-server/ serves tab-separated-value files as AESD Records. Its command-line arguments are (i) the WebSocket host address, (ii) the WebSocket port number, (iii) the directory where the tab-separated-value files reside, and (iv) the path to the journal file that persists data for future invocations.
.
The executable program /aesd-client-example/ prints out a model and creates a bookmark. Its command-line arguments are (i) the WebSocket host address and (ii) the WebSocket port number.
license : MIT
license-file : LICENSE
author : Brian W Bush <brian.bush@nrel.gov>
maintainer : Brian W Bush <brian.bush@nrel.gov>
copyright : (c) 2016-19 Alliance for Sustainable Energy LLC
category : Network
build-type : Simple
cabal-version: >= 1.10
stability : Stable
homepage : https://github.com/NREL/AESD/libs/Haskell/records/
bug-reports : https://github.com/NREL/AESD/issues/
extra-source-files: ReadMe.md
source-repository head
type : git
location: https://github.com/NREL/AESD.git
subdir : libs/Haskell/records
flag verbose
description: Verbose logging.
default : False
library
hs-source-dirs : src
exposed-modules : AESD.Records.Client
AESD.Records.Server
AESD.Records.Server.File
AESD.Records.Server.Manager
AESD.Types
AESD.Types.Bookmark
AESD.Types.Domain
AESD.Types.Filter
AESD.Types.Model
AESD.Types.Record
AESD.Types.Request
AESD.Types.Response
AESD.Types.Value
AESD.Types.Variable
Network.WebSockets.STM
other-modules : AESD.Types.Internal
build-depends : base >= 4 && < 5
, bytestring
, cereal
, containers
, data-default
, lens
, mtl
, protobuf
, regex-posix
, raft
, split
, stm
, uuid
, websockets
default-language: Haskell2010
if flag(verbose)
cpp-options : -DAESD_VERBOSE
ghc-options : -Wall -O2
executable aesd-file-server
hs-source-dirs : src
main-is : MainServer.hs
other-modules : AESD.Records.Server
AESD.Records.Server.File
AESD.Records.Server.Manager
AESD.Types
AESD.Types.Bookmark
AESD.Types.Domain
AESD.Types.Filter
AESD.Types.Internal
AESD.Types.Model
AESD.Types.Record
AESD.Types.Request
AESD.Types.Response
AESD.Types.Value
AESD.Types.Variable
Network.WebSockets.STM
build-depends : base
, bytestring
, cereal
, containers
, data-default
, directory
, filepath
, lens
, mtl
, protobuf
, regex-posix
, raft
, split
, stm
, uuid
, websockets
buildable : True
default-language: Haskell2010
if flag(verbose)
cpp-options : -DAESD_VERBOSE
ghc-options : -Wall -O2 -threaded
executable aesd-random-server
hs-source-dirs : src
main-is : MainRandomServer.hs
other-modules : AESD.Records.Server
AESD.Records.Server.Manager
AESD.Types
AESD.Types.Bookmark
AESD.Types.Domain
AESD.Types.Filter
AESD.Types.Internal
AESD.Types.Model
AESD.Types.Record
AESD.Types.Request
AESD.Types.Response
AESD.Types.Value
AESD.Types.Variable
Network.WebSockets.STM
build-depends : base
, bytestring
, cereal
, containers
, data-default
, lens
, mtl
, protobuf
, raft
, random
, split
, stm
, uuid
, websockets
buildable : True
default-language: Haskell2010
cpp-options : -DAESD_THROTTLE=1000
if flag(verbose)
cpp-options : -DAESD_VERBOSE
ghc-options : -Wall -O2 -threaded
executable aesd-client-example
hs-source-dirs : src
main-is : MainClientExample.hs
other-modules : AESD.Records.Client
AESD.Records.Server
AESD.Records.Server.Manager
AESD.Types
AESD.Types.Bookmark
AESD.Types.Domain
AESD.Types.Filter
AESD.Types.Internal
AESD.Types.Model
AESD.Types.Record
AESD.Types.Request
AESD.Types.Response
AESD.Types.Value
AESD.Types.Variable
Network.WebSockets.STM
build-depends : base
, bytestring
, cereal
, containers
, data-default
, lens
, mtl
, protobuf
, raft
, split
, stm
, uuid
, websockets
buildable : True
default-language: Haskell2010
if flag(verbose)
cpp-options : -DAESD_VERBOSE
ghc-options : -Wall -O2 -threaded