File tree 19 files changed +8
-320
lines changed
19 files changed +8
-320
lines changed Original file line number Diff line number Diff line change @@ -23,32 +23,18 @@ Library
23
23
Serokell.AcidState.Instances
24
24
Serokell.AcidState.Util
25
25
26
- Build-depends : array,
27
- acid-state,
26
+ Build-depends : acid-state,
28
27
base >= 4 && < 5 ,
29
- bytestring >= 0.10.2 ,
30
- cereal >= 0.4.1.0 ,
31
- containers,
32
28
directory,
33
- filelock,
34
29
filepath,
35
30
exceptions,
36
- extensible-exceptions,
37
31
extra,
38
- hashable,
39
32
mtl,
40
- network,
41
33
safecopy >= 0.9.4 ,
42
- stm >= 2.4 ,
43
- template-haskell,
44
- th-expand-syns >= 0.4.1 && < 0.5 ,
45
- time-units,
46
- unordered-containers
34
+ time-units
47
35
48
36
if os(windows)
49
37
Build-depends : Win32
50
- else
51
- Build-depends : unix
52
38
53
39
Hs-Source-Dirs : src/
54
40
Original file line number Diff line number Diff line change @@ -126,7 +126,6 @@ executable cardano-auxx
126
126
, cardano-sl
127
127
, cardano-sl-auxx
128
128
, cardano-sl-core
129
- , cardano-sl-crypto
130
129
, cardano-sl-db
131
130
, cardano-sl-infra
132
131
, cardano-sl-networking
@@ -173,9 +172,6 @@ executable cardano-auxx
173
172
build-tools : cpphs >= 1.19
174
173
ghc-options : -pgmP cpphs -optP --cpp
175
174
176
- if !os(windows)
177
- build-depends : unix
178
-
179
175
test-suite cardano-auxx-test
180
176
main-is : Test.hs
181
177
other-modules :
Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ library
38
38
, hashable
39
39
, lens
40
40
, micro-recursion-schemes
41
- , mtl
42
41
, safecopy
43
42
, safe-exceptions
44
43
, serokell-util
@@ -98,22 +97,13 @@ test-suite test
98
97
99
98
type : exitcode-stdio-1.0
100
99
build-depends : QuickCheck
101
- , aeson
102
100
, base
103
101
, bytestring
104
102
, cardano-sl-binary
105
103
, cardano-sl-util-test
106
104
, cborg
107
105
, cereal
108
106
, containers
109
- , cryptonite
110
- , data-default
111
- , directory
112
- , file-embed
113
- , extra
114
- , filepath
115
- , filelock
116
- , fmt
117
107
, formatting
118
108
, generic-arbitrary
119
109
, half
@@ -125,7 +115,6 @@ test-suite test
125
115
, safecopy
126
116
, serokell-util >= 0.1.3.4
127
117
, tagged
128
- , template-haskell
129
118
, text
130
119
, formatting
131
120
, time-units
Original file line number Diff line number Diff line change @@ -19,18 +19,14 @@ library
19
19
Test.Pos.Cbor.RefImpl
20
20
21
21
build-depends : QuickCheck
22
- , aeson
23
22
, base
24
23
, bytestring
25
24
, cardano-sl-binary
26
25
, cardano-sl-util-test
27
26
, cborg
28
27
, cereal
29
- , cryptonite
30
28
, containers
31
- , directory
32
29
, cryptonite
33
- , filepath
34
30
, formatting
35
31
, half
36
32
, hedgehog
@@ -40,7 +36,6 @@ library
40
36
, quickcheck-instances
41
37
, safecopy
42
38
, serokell-util
43
- , template-haskell
44
39
, text
45
40
, universum
46
41
Original file line number Diff line number Diff line change @@ -163,7 +163,6 @@ library
163
163
build-depends : aeson
164
164
, aeson-options
165
165
, ansi-terminal
166
- , async
167
166
, base
168
167
, base58-bytestring
169
168
, bytestring
@@ -215,7 +214,6 @@ library
215
214
, unliftio
216
215
, unliftio-core
217
216
, unordered-containers
218
- , vector
219
217
220
218
default-language : Haskell2010
221
219
@@ -280,9 +278,7 @@ test-suite test
280
278
Test.Pos.Core.Arbitrary.Unsafe
281
279
Test.Pos.Core.Dummy
282
280
283
- build-depends : aeson
284
- , base
285
- , base16-bytestring
281
+ build-depends : base
286
282
, bytestring
287
283
, cardano-crypto
288
284
, cardano-sl-binary
@@ -294,8 +290,6 @@ test-suite test
294
290
, cardano-sl-util-test
295
291
, containers
296
292
, cryptonite
297
- , deepseq
298
- , ed25519
299
293
, formatting
300
294
, generic-arbitrary
301
295
, hedgehog
@@ -310,7 +304,6 @@ test-suite test
310
304
, time-units
311
305
, universum >= 0.1.11
312
306
, unordered-containers
313
- , vector
314
307
315
308
ghc-options :
316
309
-threaded
Original file line number Diff line number Diff line change @@ -25,9 +25,7 @@ library
25
25
Test.Pos.Core.Json
26
26
27
27
build-depends : QuickCheck
28
- , aeson
29
28
, base
30
- , base16-bytestring
31
29
, bytestring
32
30
, cardano-crypto
33
31
, cardano-sl-binary
@@ -39,9 +37,6 @@ library
39
37
, cardano-sl-util-test
40
38
, containers
41
39
, cryptonite
42
- , data-default
43
- , ed25519
44
- , formatting
45
40
, generic-arbitrary
46
41
, hedgehog
47
42
, pvss
@@ -52,7 +47,6 @@ library
52
47
, time-units
53
48
, universum
54
49
, unordered-containers
55
- , vector
56
50
57
51
default-language : Haskell2010
58
52
Original file line number Diff line number Diff line change @@ -148,7 +148,6 @@ library
148
148
, memory
149
149
, mmorph
150
150
, mtl
151
- , reflection
152
151
, resourcet
153
152
, rocksdb-haskell-ng
154
153
, safe-exceptions
@@ -202,7 +201,6 @@ test-suite test
202
201
type : exitcode-stdio-1.0
203
202
build-depends : base
204
203
, cardano-sl-binary
205
- , cardano-sl-binary-test
206
204
, cardano-sl-core
207
205
, cardano-sl-core-test
208
206
, cardano-sl-db
Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ library
25
25
, cardano-sl-binary
26
26
, cardano-sl-chain
27
27
, cardano-sl-chain-test
28
- , cardano-sl-core
29
28
, cardano-sl-core-test
30
29
, cardano-sl-crypto-test
31
30
, cardano-sl-db
Original file line number Diff line number Diff line change @@ -92,7 +92,6 @@ library
92
92
, cardano-sl-db
93
93
, cardano-sl-generator
94
94
, cardano-sl-infra
95
- , cardano-sl-networking
96
95
, cardano-sl-util
97
96
98
97
-- mtl ++
@@ -156,10 +155,8 @@ executable cardano-explorer
156
155
, cardano-sl
157
156
, cardano-sl-chain
158
157
, cardano-sl-core
159
- , cardano-sl-crypto
160
158
, cardano-sl-infra
161
159
, cardano-sl-explorer
162
- , cardano-sl-networking
163
160
, cardano-sl-util
164
161
, optparse-applicative
165
162
, universum
Original file line number Diff line number Diff line change @@ -44,7 +44,6 @@ library
44
44
, cardano-sl-core
45
45
, cardano-sl-core-test
46
46
, cardano-sl-crypto
47
- , cardano-sl-crypto-test
48
47
, cardano-sl-db
49
48
, cardano-sl-infra
50
49
, cardano-sl-util
@@ -183,34 +182,21 @@ benchmark cardano-sl-verification-bench
183
182
main-is : Main.hs
184
183
other-modules : Bench.Pos.Criterion.Block.Logic
185
184
type : exitcode-stdio-1.0
186
- build-depends : async
187
- , base
185
+ build-depends : base
188
186
, cardano-sl
189
- , cardano-sl-binary
190
187
, cardano-sl-chain
191
188
, cardano-sl-core
192
189
, cardano-sl-crypto
193
190
, cardano-sl-db
194
191
, cardano-sl-generator
195
- , cardano-sl-infra
196
- , cardano-sl-networking
197
192
, cardano-sl-util
198
- , containers
199
193
, criterion
200
- , cryptonite
201
- , data-default
202
- , ether
203
- , lens
204
194
, log-warper
205
- , lrucache
206
195
, MonadRandom
207
- , mtl
208
196
, QuickCheck
209
197
, random
210
198
, time-units
211
199
, universum >= 0.1.11
212
- , unliftio-core
213
- , unordered-containers
214
200
, serokell-util
215
201
default-language : Haskell2010
216
202
ghc-options : -threaded
@@ -250,8 +236,7 @@ benchmark cardano-sl-verification-bench
250
236
executable cardano-sl-verification-bench-exe
251
237
hs-source-dirs : app
252
238
main-is : VerificationBench.hs
253
- build-depends : async
254
- , base
239
+ build-depends : base
255
240
, bytestring
256
241
, cardano-sl
257
242
, cardano-sl-binary
@@ -260,29 +245,18 @@ executable cardano-sl-verification-bench-exe
260
245
, cardano-sl-crypto
261
246
, cardano-sl-db
262
247
, cardano-sl-generator
263
- , cardano-sl-infra
264
- , cardano-sl-networking
265
248
, cardano-sl-util
266
249
, containers
267
- , criterion
268
250
, cryptonite
269
- , data-default
270
251
, deepseq
271
252
, directory
272
- , ether
273
253
, formatting
274
- , lens
275
- , lrucache
276
254
, MonadRandom
277
- , mtl
278
255
, optparse-applicative
279
- , QuickCheck
280
256
, random
281
257
, text
282
258
, time-units
283
259
, universum >= 0.1.11
284
- , unliftio-core
285
- , unordered-containers
286
260
default-language : Haskell2010
287
261
ghc-options : -threaded
288
262
-rtsopts
Original file line number Diff line number Diff line change @@ -221,11 +221,9 @@ test-suite test
221
221
Test.Pos.Infra.Json
222
222
223
223
build-depends : QuickCheck
224
- , aeson
225
224
, async
226
225
, base
227
226
, bytestring
228
- , cardano-sl-binary
229
227
, cardano-sl-binary-test
230
228
, cardano-sl-chain
231
229
, cardano-sl-chain-test
@@ -244,7 +242,6 @@ test-suite test
244
242
, iproute
245
243
, kademlia
246
244
, universum
247
- , unordered-containers
248
245
249
246
ghc-options : -Wall
250
247
-O2
Original file line number Diff line number Diff line change @@ -26,11 +26,9 @@ library
26
26
Test.Pos.Infra.Json
27
27
28
28
build-depends : QuickCheck
29
- , aeson
30
29
, async
31
30
, base
32
31
, bytestring
33
- , cardano-sl-binary
34
32
, cardano-sl-binary-test
35
33
, cardano-sl-chain
36
34
, cardano-sl-chain-test
@@ -49,7 +47,6 @@ library
49
47
, iproute
50
48
, kademlia
51
49
, universum
52
- , unordered-containers
53
50
54
51
default-language : Haskell2010
55
52
Original file line number Diff line number Diff line change @@ -120,9 +120,6 @@ library
120
120
-- NodeContext
121
121
Pos.Context.Context
122
122
123
- -- Crypto
124
- Pos.Crypto.HDDiscovery
125
-
126
123
-- GState
127
124
Pos.GState.Context
128
125
Pos.GState.GState
@@ -408,7 +405,6 @@ benchmark cardano-bench-criterion
408
405
, network-transport
409
406
, network-transport-inmemory
410
407
, optparse-applicative
411
- , time-units
412
408
, universum >= 0.1.11
413
409
default-language : Haskell2010
414
410
ghc-options : -threaded -rtsopts
You can’t perform that action at this time.
0 commit comments