This repository has been archived by the owner on Jul 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 109
/
constellation.cabal
230 lines (222 loc) · 8.96 KB
/
constellation.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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
name: constellation
version: 0.3.0
synopsis: Constellation
description: Constellation
homepage: https://github.com/jpmorganchase/constellation
license: Apache-2.0
license-file: LICENSE
author: Patrick Nielsen
maintainer:
copyright:
category: Network
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
hs-source-dirs: .
exposed-modules: Constellation.Configure.Main
Constellation.Enclave
Constellation.Enclave.Key
Constellation.Enclave.Keygen.Main
Constellation.Enclave.Main
Constellation.Enclave.Payload
Constellation.Enclave.Types
Constellation.Node
Constellation.Node.Api
Constellation.Node.Config
Constellation.Node.Main
Constellation.Node.Storage.BerkeleyDb
Constellation.Node.Storage.Directory
Constellation.Node.Storage.LevelDb
Constellation.Node.Storage.Memory
Constellation.Node.Storage.Sqlite
Constellation.Node.Trust
Constellation.Node.Types
Constellation.Util.AtExit
Constellation.Util.ByteString
Constellation.Util.Either
Constellation.Util.Exception
Constellation.Util.File
Constellation.Util.Http
Constellation.Util.Json
Constellation.Util.Lockable
Constellation.Util.Logging
Constellation.Util.Network
Constellation.Util.String
Constellation.Util.Text
Constellation.Util.Tls
Constellation.Util.Tls.Vincent
Constellation.Util.Wai
ghc-options: -Wall
build-depends: base >= 4.9
, aeson >= 0.11
, aeson-pretty >= 0.8.5
, asn1-encoding >= 0.9.5
, asn1-types >= 0.3.2
, async >= 2.1
, auto-update >= 0.1.4
, BerkeleyDB >= 0.8.7
, binary >= 0.8.3
, byteable >= 0.1.1
, bytestring >= 0.10.8
, classy-prelude >= 1.0.0.2
, conduit >= 1.2.8
, connection >= 0.2.8
, containers >= 0.5.7
, cryptonite >= 0.24
, data-default >= 0.7.1.1
, directory >= 1.2.6.2
, either >= 4.4
, entropy >= 0.3
, hashable >= 1.2.4
, haskeline >= 0.7.2.3
, hex >= 0.1.2
, hourglass >= 0.2.10
, htoml >= 1.0.0.1
, http-client-tls >= 0.3.5.1
, http-conduit >= 2.1
, http-types
, iproute >= 1.7
-- , lens
, leveldb-haskell >= 0.6.5
, logging >= 3.0.4
, memory >= 0.13
, mtl >= 2.2.1
, network >= 2.6.3.1
, network-uri >= 2.6.1.0
, pem >= 0.2.2
, pretty-simple >= 2.0.1.0
, random >= 1.1
, raw-strings-qq >= 1.1
, resource-pool >= 0.2.3.2
, saltine >= 0.0.0.4
, split >= 0.2.3.1
, sqlite-simple >= 0.4.13.0
, text >= 1.2.2.1
, text-format >= 0.3.1.1
, tls >= 1.3.11
, tls-session-manager >= 0.0.0.1
, unix >= 2.7.2.1
, unordered-containers >= 0.2.7.1
, wai >= 3.2.1.1
, warp >= 3.2.8
, warp-tls >= 3.2.4
, x509 >= 1.7.2
, x509-system >= 1.6.6
, x509-validation >= 1.6.9
, x509-store >= 1.6.5
default-language: Haskell2010
test-suite constellation-test
type: exitcode-stdio-1.0
hs-source-dirs: test
other-modules: Constellation.Configure.Main.Test
Constellation.Enclave.Test
Constellation.Enclave.Key.Test
Constellation.Enclave.Keygen.Main.Test
Constellation.Enclave.Main.Test
Constellation.Enclave.Payload.Test
Constellation.Enclave.Types.Test
Constellation.MockData
Constellation.Node.Test
Constellation.Node.Api.Test
Constellation.Node.Config.Test
Constellation.Node.Main.Test
Constellation.Node.Storage.BerkeleyDb.Test
Constellation.Node.Storage.LevelDb.Test
Constellation.Node.Storage.Directory.Test
Constellation.Node.Storage.Memory.Test
Constellation.Node.Storage.Sqlite.Test
Constellation.Node.Storage.TestUtil
Constellation.Node.Trust.Test
Constellation.Node.Types.Test
Constellation.TestUtil
Constellation.Util.AtExit.Test
Constellation.Util.ByteString.Test
Constellation.Util.Either.Test
Constellation.Util.Exception.Test
Constellation.Util.File.Test
Constellation.Util.Http.Test
Constellation.Util.Json.Test
Constellation.Util.Lockable.Test
Constellation.Util.Logging.Test
Constellation.Util.Network.Test
Constellation.Util.String.Test
Constellation.Util.Text.Test
Constellation.Util.Tls.Test
Constellation.Util.Wai.Test
main-is: Main.hs
ghc-options: -threaded
-Wall
build-depends: constellation
, base
, aeson
, bytestring
, classy-prelude
, cryptonite
, data-default
, filepath
, hex
, http-types
, iproute
, logging
, memory
, network
, QuickCheck
, tasty
, tasty-hunit
, tasty-quickcheck
, temporary
, text
, text-format
, tls
, unix
, unordered-containers
, warp
, warp-tls
, x509
, x509-validation
default-language: Haskell2010
executable constellation-node
hs-source-dirs: bin
main-is: Node.hs
ghc-options: -threaded
-Wall
build-depends: constellation
, base
default-language: Haskell2010
-- executable constellation-enclave
-- hs-source-dirs: bin
-- main-is: Enclave.hs
-- ghc-options: -threaded
-- -Wall
-- build-depends: base
-- , constellation
-- default-language: Haskell2010
-- executable constellation-enclave-keygen
-- hs-source-dirs: bin
-- main-is: EnclaveKeygen.hs
-- ghc-options: -threaded
-- -Wall
-- build-depends: base
-- , constellation
-- default-language: Haskell2010
-- executable constellation-configure
-- hs-source-dirs: bin
-- main-is: Configure.hs
-- ghc-options: -threaded
-- -Wall
-- build-depends: base
-- , constellation
-- default-language: Haskell2010
-- executable constellation-benchmark
-- hs-source-dirs: bench
-- main-is: Main.hs
-- ghc-options: -threaded
-- -Wall
-- build-depends: base
-- , constellation
-- , criterion
-- default-language: Haskell2010
source-repository head
type: git
location: https://github.com/jpmorganchase/constellation