File size: 42,666 Bytes
4a0a288
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
id,name,version,description,repository_id
Diff::Diff,Diff,unknown,Package Diff vunknown,Diff
Glob::Glob,Glob,0.10.2,Package Glob v0.10.2,Glob
HTTP::HTTP,HTTP,4000.4.1,Package HTTP v4000.4.1,HTTP
HUnit::HUnit,HUnit,1.6.2.0,Package HUnit v1.6.2.0,HUnit
JuicyPixels::JuicyPixels,JuicyPixels,3.3.8,Package JuicyPixels v3.3.8,JuicyPixels
MonadPrompt::MonadPrompt,MonadPrompt,1.0.0.5,Package MonadPrompt v1.0.0.5,MonadPrompt
MonadRandom::MonadRandom,MonadRandom,0.6,Package MonadRandom v0.6,MonadRandom
OneTuple::OneTuple,OneTuple,0.4.1.1,Package OneTuple v0.4.1.1,OneTuple
Only::Only,Only,0.1,Package Only v0.1,Only
QuickCheck::QuickCheck,QuickCheck,2.14.3,Package QuickCheck v2.14.3,QuickCheck
RSA::RSA,RSA,2.4.1,Package RSA v2.4.1,RSA
SHA::SHA,SHA,1.6.4.4,Package SHA v1.6.4.4,SHA
StateVar::StateVar,StateVar,1.2.2,Package StateVar v1.2.2,StateVar
Stream::Stream,Stream,unknown,Package Stream vunknown,Stream
adjunctions::adjunctions,adjunctions,4.4.2,Package adjunctions v4.4.2,adjunctions
aeson::aeson,aeson,2.1.3.0,Package aeson v2.1.3.0,aeson
aeson-better-errors::aeson-better-errors,aeson-better-errors,0.9.1.1,Package aeson-better-errors v0.9.1.1,aeson-better-errors
aeson-casing::aeson-casing,aeson-casing,0.2.0.0,Package aeson-casing v0.2.0.0,aeson-casing
aeson-extra::aeson-extra,aeson-extra,0.5.1.2,Package aeson-extra v0.5.1.2,aeson-extra
aeson-pretty::aeson-pretty,aeson-pretty,0.8.9,Package aeson-pretty v0.8.9,aeson-pretty
amazonka::amazonka,amazonka,2.0,Package amazonka v2.0,amazonka
amazonka-core::amazonka-core,amazonka-core,2.0,Package amazonka-core v2.0,amazonka-core
amazonka-kms::amazonka-kms,amazonka-kms,2.0,Package amazonka-kms v2.0,amazonka-kms
amazonka-s3::amazonka-s3,amazonka-s3,2.0,Package amazonka-s3 v2.0,amazonka-s3
amazonka-s3-encryption::amazonka-s3-encryption,amazonka-s3-encryption,2.0,Package amazonka-s3-encryption v2.0,amazonka-s3-encryption
amazonka-ses::amazonka-ses,amazonka-ses,2.0,Package amazonka-ses v2.0,amazonka-ses
amazonka-sso::amazonka-sso,amazonka-sso,2.0,Package amazonka-sso v2.0,amazonka-sso
amazonka-sts::amazonka-sts,amazonka-sts,2.0,Package amazonka-sts v2.0,amazonka-sts
ansi-terminal::ansi-terminal,ansi-terminal,0.11.5,Package ansi-terminal v0.11.5,ansi-terminal
ansi-terminal-types::ansi-terminal-types,ansi-terminal-types,0.11.5,Package ansi-terminal-types v0.11.5,ansi-terminal-types
ansi-wl-pprint::ansi-wl-pprint,ansi-wl-pprint,0.6.9,Package ansi-wl-pprint v0.6.9,ansi-wl-pprint
ap-normalize::ap-normalize,ap-normalize,0.1.0.1,Package ap-normalize v0.1.0.1,ap-normalize
api-contract::api-contract,api-contract,0.1.0.0,Package api-contract v0.1.0.0,api-contract
appar::appar,appar,0.1.8,Package appar v0.1.8,appar
arrows::arrows,arrows,unknown,Package arrows vunknown,arrows
asn1-encoding::asn1-encoding,asn1-encoding,0.9.6,Package asn1-encoding v0.9.6,asn1-encoding
asn1-parse::asn1-parse,asn1-parse,0.9.5,Package asn1-parse v0.9.5,asn1-parse
asn1-types::asn1-types,asn1-types,0.3.4,Package asn1-types v0.3.4,asn1-types
assoc::assoc,assoc,1.1,Package assoc v1.1,assoc
async::async,async,2.2.4,Package async v2.2.4,async
atomic-primops::atomic-primops,atomic-primops,0.8.4,Package atomic-primops v0.8.4,atomic-primops
attoparsec::attoparsec,attoparsec,0.14.4,Package attoparsec v0.14.4,attoparsec
attoparsec-iso8601::attoparsec-iso8601,attoparsec-iso8601,1.1.0.0,Package attoparsec-iso8601 v1.1.0.0,attoparsec-iso8601
auto-update::auto-update,auto-update,0.1.6,Package auto-update v0.1.6,auto-update
barbies::barbies,barbies,2.0.4.0,Package barbies v2.0.4.0,barbies
base-compat::base-compat,base-compat,0.12.3,Package base-compat v0.12.3,base-compat
base-compat-batteries::base-compat-batteries,base-compat-batteries,0.12.3,Package base-compat-batteries v0.12.3,base-compat-batteries
base-orphans::base-orphans,base-orphans,0.9.0,Package base-orphans v0.9.0,base-orphans
base-unicode-symbols::base-unicode-symbols,base-unicode-symbols,0.2.4.2,Package base-unicode-symbols v0.2.4.2,base-unicode-symbols
base16::base16,base16,0.3.2.1,Package base16 v0.3.2.1,base16
base16-bytestring::base16-bytestring,base16-bytestring,1.0.2.0,Package base16-bytestring v1.0.2.0,base16-bytestring
base64::base64,base64,0.4.2.4,Package base64 v0.4.2.4,base64
base64-bytestring::base64-bytestring,base64-bytestring,1.2.1.0,Package base64-bytestring v1.2.1.0,base64-bytestring
basement::basement,basement,0.0.16,Package basement v0.0.16,basement
beam-core::beam-core,beam-core,0.9.0.0,Package beam-core v0.9.0.0,beam-core
beam-migrate::beam-migrate,beam-migrate,0.5.0.0,Package beam-migrate v0.5.0.0,beam-migrate
beam-mysql::beam-mysql,beam-mysql,1.3.0.4,Package beam-mysql v1.3.0.4,beam-mysql
beam-postgres::beam-postgres,beam-postgres,0.5.0.0,Package beam-postgres v0.5.0.0,beam-postgres
beam-sqlite::beam-sqlite,beam-sqlite,0.5.0.0,Package beam-sqlite v0.5.0.0,beam-sqlite
bifunctors::bifunctors,bifunctors,5.5.15,Package bifunctors v5.5.15,bifunctors
binary-ieee754::binary-ieee754,binary-ieee754,0.1.0.0,Package binary-ieee754 v0.1.0.0,binary-ieee754
binary-orphans::binary-orphans,binary-orphans,1.0.4.1,Package binary-orphans v1.0.4.1,binary-orphans
binary-parsers::binary-parsers,binary-parsers,0.2.4.0,Package binary-parsers v0.2.4.0,binary-parsers
bitvec::bitvec,bitvec,1.1.5.0,Package bitvec v1.1.5.0,bitvec
blaze-builder::blaze-builder,blaze-builder,0.4.2.3,Package blaze-builder v0.4.2.3,blaze-builder
blaze-html::blaze-html,blaze-html,0.9.1.2,Package blaze-html v0.9.1.2,blaze-html
blaze-markup::blaze-markup,blaze-markup,0.8.3.0,Package blaze-markup v0.8.3.0,blaze-markup
blaze-textual::blaze-textual,blaze-textual,0.2.3.1,Package blaze-textual v0.2.3.1,blaze-textual
boring::boring,boring,0.2.1,Package boring v0.2.1,boring
bsb-http-chunked::bsb-http-chunked,bsb-http-chunked,0.0.0.4,Package bsb-http-chunked v0.0.0.4,bsb-http-chunked
bson::bson,bson,0.4.0.1,Package bson v0.4.0.1,bson
byte-order::byte-order,byte-order,0.1.3.0,Package byte-order v0.1.3.0,byte-order
byteable::byteable,byteable,0.1.1,Package byteable v0.1.1,byteable
bytebuild::bytebuild,bytebuild,0.3.14.0,Package bytebuild v0.3.14.0,bytebuild
bytehash::bytehash,bytehash,0.1.0.0,Package bytehash v0.1.0.0,bytehash
byteorder::byteorder,byteorder,1.0.4,Package byteorder v1.0.4,byteorder
byteslice::byteslice,byteslice,0.2.11.1,Package byteslice v0.2.11.1,byteslice
bytesmith::bytesmith,bytesmith,0.3.10.0,Package bytesmith v0.3.10.0,bytesmith
bytestring-builder::bytestring-builder,bytestring-builder,0.10.8.2.0,Package bytestring-builder v0.10.8.2.0,bytestring-builder
bytestring-lexing::bytestring-lexing,bytestring-lexing,0.5.0.10,Package bytestring-lexing v0.5.0.10,bytestring-lexing
c14n::c14n,c14n,0.1.0.3,Package c14n v0.1.0.3,c14n
call-stack::call-stack,call-stack,0.4.0,Package call-stack v0.4.0,call-stack
case-insensitive::case-insensitive,case-insensitive,1.2.1.0,Package case-insensitive v1.2.1.0,case-insensitive
casing::casing,casing,0.1.4.1,Package casing v0.1.4.1,casing
cassava::cassava,cassava,0.5.3.0,Package cassava v0.5.3.0,cassava
cereal::cereal,cereal,0.5.8.4,Package cereal v0.5.8.4,cereal
charset::charset,charset,0.3.10,Package charset v0.3.10,charset
cipher-aes::cipher-aes,cipher-aes,0.2.11,Package cipher-aes v0.2.11,cipher-aes
classyplate::classyplate,classyplate,0.4.0.0,Package classyplate v0.4.0.0,classyplate
clock::clock,clock,0.8.4,Package clock v0.8.4,clock
cmdargs::cmdargs,cmdargs,0.10.22,Package cmdargs v0.10.22,cmdargs
code-page::code-page,code-page,0.2.1,Package code-page v0.2.1,code-page
colour::colour,colour,2.3.6,Package colour v2.3.6,colour
comonad::comonad,comonad,5.0.8,Package comonad v5.0.8,comonad
concise::concise,concise,0.1.0.1,Package concise v0.1.0.1,concise
concurrent-output::concurrent-output,concurrent-output,1.10.19,Package concurrent-output v1.10.19,concurrent-output
conduit::conduit,conduit,1.3.5,Package conduit v1.3.5,conduit
conduit-extra::conduit-extra,conduit-extra,1.3.6,Package conduit-extra v1.3.6,conduit-extra
connection::connection,connection,0.3.1,Package connection v0.3.1,connection
constraints::constraints,constraints,0.13.4,Package constraints v0.13.4,constraints
constraints-extras::constraints-extras,constraints-extras,0.3.2.1,Package constraints-extras v0.3.2.1,constraints-extras
contiguous::contiguous,contiguous,0.6.3.0,Package contiguous v0.6.3.0,contiguous
contravariant::contravariant,contravariant,1.5.5,Package contravariant v1.5.5,contravariant
cookie::cookie,cookie,0.4.6,Package cookie v0.4.6,cookie
country::country,country,0.2.2,Package country v0.2.2,country
criterion::criterion,criterion,1.6.1.0,Package criterion v1.6.1.0,criterion
criterion-measurement::criterion-measurement,criterion-measurement,0.2.1.0,Package criterion-measurement v0.2.1.0,criterion-measurement
crypto-api::crypto-api,crypto-api,0.13.3,Package crypto-api v0.13.3,crypto-api
crypto-cipher::crypto-cipher,crypto-cipher,tests,Package crypto-cipher vtests,crypto-cipher
crypto-cipher-types::crypto-cipher-types,crypto-cipher-types,0.0.9,Package crypto-cipher-types v0.0.9,crypto-cipher-types
crypto-pubkey-types::crypto-pubkey-types,crypto-pubkey-types,0.4.3,Package crypto-pubkey-types v0.4.3,crypto-pubkey-types
cryptohash::cryptohash,cryptohash,0.11.9,Package cryptohash v0.11.9,cryptohash
cryptohash-md5::cryptohash-md5,cryptohash-md5,0.11.101.0,Package cryptohash-md5 v0.11.101.0,cryptohash-md5
cryptohash-sha1::cryptohash-sha1,cryptohash-sha1,0.11.101.0,Package cryptohash-sha1 v0.11.101.0,cryptohash-sha1
crypton::crypton,crypton,0.32,Package crypton v0.32,crypton
cryptonite::cryptonite,cryptonite,0.30,Package cryptonite v0.30,cryptonite
cryptonite-openssl::cryptonite-openssl,cryptonite-openssl,0.7,Package cryptonite-openssl v0.7,cryptonite-openssl
cryptostore::cryptostore,cryptostore,0.2.3.0,Package cryptostore v0.2.3.0,cryptostore
ctrie::ctrie,ctrie,0.2,Package ctrie v0.2,ctrie
currency::currency,currency,0.2.0.0,Package currency v0.2.0.0,currency
currency-codes::currency-codes,currency-codes,3.0.0.1,Package currency-codes v3.0.0.1,currency-codes
d10::d10,d10,1.0.1.3,Package d10 v1.0.1.3,d10
data-array-byte::data-array-byte,data-array-byte,0.1.0.1,Package data-array-byte v0.1.0.1,data-array-byte
data-binary-ieee754::data-binary-ieee754,data-binary-ieee754,0.4.4,Package data-binary-ieee754 v0.4.4,data-binary-ieee754
data-default::data-default,data-default,0.7.1.1,Package data-default v0.7.1.1,data-default
data-default-class::data-default-class,data-default-class,0.1.2.0,Package data-default-class v0.1.2.0,data-default-class
data-default-instances-containers::data-default-instances-containers,data-default-instances-containers,0.0.1,Package data-default-instances-containers v0.0.1,data-default-instances-containers
data-default-instances-dlist::data-default-instances-dlist,data-default-instances-dlist,0.0.1,Package data-default-instances-dlist v0.0.1,data-default-instances-dlist
data-default-instances-old-locale::data-default-instances-old-locale,data-default-instances-old-locale,0.0.1,Package data-default-instances-old-locale v0.0.1,data-default-instances-old-locale
data-fix::data-fix,data-fix,0.3.2,Package data-fix v0.3.2,data-fix
data::data,data,ordlist,Package data vordlist,data
dc::dc,dc,0.1.0.0,Package dc v0.1.0.0,dc
dec::dec,dec,0.0.5,Package dec v0.0.5,dec
deepseq::deepseq,deepseq,generics,Package deepseq vgenerics,deepseq
dense-linear-algebra::dense-linear-algebra,dense-linear-algebra,0.1.0.0,Package dense-linear-algebra v0.1.0.0,dense-linear-algebra
dependent-map::dependent-map,dependent-map,0.4.0.0,Package dependent-map v0.4.0.0,dependent-map
dependent-sum::dependent-sum,dependent-sum,0.7.2.0,Package dependent-sum v0.7.2.0,dependent-sum
digest::digest,digest,0.0.1.7,Package digest v0.0.1.7,digest
direct-sqlite::direct-sqlite,direct-sqlite,2.3.28,Package direct-sqlite v2.3.28,direct-sqlite
distributive::distributive,distributive,0.6.2.1,Package distributive v0.6.2.1,distributive
dlist::dlist,dlist,1.0,Package dlist v1.0,dlist
dlist-nonempty::dlist-nonempty,dlist-nonempty,0.1.3,Package dlist-nonempty v0.1.3,dlist-nonempty
dns::dns,dns,4.1.1,Package dns v4.1.1,dns
doctest::doctest,doctest,unknown,Package doctest vunknown,doctest
doctest-exitcode::doctest-exitcode,doctest-exitcode,stdio,Package doctest-exitcode vstdio,doctest-exitcode
double-conversion::double-conversion,double-conversion,2.0.4.2,Package double-conversion v2.0.4.2,double-conversion
easy-file::easy-file,easy-file,0.2.5,Package easy-file v0.2.5,easy-file
either::either,either,5.0.2,Package either v5.0.2,either
email-validate::email-validate,email-validate,2.3.2.19,Package email-validate v2.3.2.19,email-validate
enclosed-exceptions::enclosed-exceptions,enclosed-exceptions,1.0.3,Package enclosed-exceptions v1.0.3,enclosed-exceptions
endpoints::endpoints,endpoints,0.1.0.0,Package endpoints v0.1.0.0,endpoints
entropy::entropy,entropy,0.4.1.10,Package entropy v0.4.1.10,entropy
erf::erf,erf,2.0.0.0,Package erf v2.0.0.0,erf
errors::errors,errors,2.3.0,Package errors v2.3.0,errors
extensible::extensible,extensible,exceptions,Package extensible vexceptions,extensible
extra::extra,extra,1.7.14,Package extra v1.7.14,extra
fail::fail,fail,4.9.0.0,Package fail v4.9.0.0,fail
fast-logger::fast-logger,fast-logger,3.2.2,Package fast-logger v3.2.2,fast-logger
fast-time::fast-time,fast-time,0.1.0.0,Package fast-time v0.1.0.0,fast-time
fdep::fdep,fdep,unknown,Package fdep vunknown,fdep
fieldInspector::fieldInspector,fieldInspector,unknown,Package fieldInspector vunknown,fieldInspector
file-embed::file-embed,file-embed,0.0.15.0,Package file-embed v0.0.15.0,file-embed
filemanip::filemanip,filemanip,unknown,Package filemanip vunknown,filemanip
filtrable::filtrable,filtrable,0.1.6.0,Package filtrable v0.1.6.0,filtrable
fin::fin,fin,0.3,Package fin v0.3,fin
fingertree::fingertree,fingertree,unknown,Package fingertree vunknown,fingertree
finite-typelits::finite-typelits,finite-typelits,0.1.6.0,Package finite-typelits v0.1.6.0,finite-typelits
flatparse::flatparse,flatparse,0.4.1.0,Package flatparse v0.4.1.0,flatparse
fmt::fmt,fmt,0.6.3.0,Package fmt v0.6.3.0,fmt
foldable1-classes-compat::foldable1-classes-compat,foldable1-classes-compat,0.1,Package foldable1-classes-compat v0.1,foldable1-classes-compat
foldl::foldl,foldl,unknown,Package foldl vunknown,foldl
formatting::formatting,formatting,7.2.0,Package formatting v7.2.0,formatting
foundation::foundation,foundation,unknown,Package foundation vunknown,foundation
free::free,free,5.1.10,Package free v5.1.10,free
fusion-plugin-types::fusion-plugin-types,fusion-plugin-types,0.1.0,Package fusion-plugin-types v0.1.0,fusion-plugin-types
generic-arbitrary::generic-arbitrary,generic-arbitrary,1.0.1,Package generic-arbitrary v1.0.1,generic-arbitrary
generic-data::generic-data,generic-data,1.1.0.0,Package generic-data v1.1.0.0,generic-data
generic-deriving::generic-deriving,generic-deriving,1.14.5,Package generic-deriving v1.14.5,generic-deriving
generic-lens::generic-lens,generic-lens,2.2.2.0,Package generic-lens v2.2.2.0,generic-lens
generic-lens-core::generic-lens-core,generic-lens-core,2.2.1.0,Package generic-lens-core v2.2.1.0,generic-lens-core
generic-optics::generic-optics,generic-optics,2.2.1.0,Package generic-optics v2.2.1.0,generic-optics
generic-random::generic-random,generic-random,1.5.0.1,Package generic-random v1.5.0.1,generic-random
generically::generically,generically,0.1.1,Package generically v0.1.1,generically
generics-sop::generics-sop,generics-sop,0.5.1.3,Package generics-sop v0.5.1.3,generics-sop
ghc::ghc,ghc,9.2.8,Package ghc v9.2.8,ghc
ghc-exactprint::ghc-exactprint,ghc-exactprint,1.5.0,Package ghc-exactprint v1.5.0,ghc-exactprint
ghc-hasfield-plugin::ghc-hasfield-plugin,ghc-hasfield-plugin,0.1.0.0,Package ghc-hasfield-plugin v0.1.0.0,ghc-hasfield-plugin
ghc-paths::ghc-paths,ghc-paths,0.1.0.12,Package ghc-paths v0.1.0.12,ghc-paths
ghc-tcplugin-api::ghc-tcplugin-api,ghc-tcplugin-api,0.11.0.0,Package ghc-tcplugin-api v0.11.0.0,ghc-tcplugin-api
groom::groom,groom,unknown,Package groom vunknown,groom
groups::groups,groups,unknown,Package groups vunknown,groups
hasbolt::hasbolt,hasbolt,unknown,Package hasbolt vunknown,hasbolt
hashable::hashable,hashable,1.4.3.0,Package hashable v1.4.3.0,hashable
haskell-lexer::haskell-lexer,haskell-lexer,1.1.1,Package haskell-lexer v1.1.1,haskell-lexer
haskell-src-exts::haskell-src-exts,haskell-src-exts,1.23.1,Package haskell-src-exts v1.23.1,haskell-src-exts
haskell-src-meta::haskell-src-meta,haskell-src-meta,0.8.12,Package haskell-src-meta v0.8.12,haskell-src-meta
heaps::heaps,heaps,0.4,Package heaps v0.4,heaps
hedgehog::hedgehog,hedgehog,1.2,Package hedgehog v1.2,hedgehog
hedis::hedis,hedis,0.15.3,Package hedis v0.15.3,hedis
hex::hex,hex,0.2.0,Package hex v0.2.0,hex
hexml::hexml,hexml,unknown,Package hexml vunknown,hexml
hopenssl::hopenssl,hopenssl,2.2.5,Package hopenssl v2.2.5,hopenssl
hostname::hostname,hostname,unknown,Package hostname vunknown,hostname
hourglass::hourglass,hourglass,0.2.12,Package hourglass v0.2.12,hourglass
hspec::hspec,hspec,2.10.10,Package hspec v2.10.10,hspec
hspec-core::hspec-core,hspec-core,2.10.10,Package hspec-core v2.10.10,hspec-core
hspec-discover::hspec-discover,hspec-discover,2.10.10,Package hspec-discover v2.10.10,hspec-discover
hspec-expectations::hspec-expectations,hspec-expectations,0.8.2,Package hspec-expectations v0.8.2,hspec-expectations
hspec-hedgehog::hspec-hedgehog,hspec-hedgehog,0.0.1.2,Package hspec-hedgehog v0.0.1.2,hspec-hedgehog
hspec-smallcheck::hspec-smallcheck,hspec-smallcheck,0.5.3,Package hspec-smallcheck v0.5.3,hspec-smallcheck
html-entities::html-entities,html-entities,1.1.4.6,Package html-entities v1.1.4.6,html-entities
http-api-data::http-api-data,http-api-data,0.5,Package http-api-data v0.5,http-api-data
http-client::http-client,http-client,0.7.14,Package http-client v0.7.14,http-client
http-client-tls::http-client-tls,http-client-tls,0.3.6.1,Package http-client-tls v0.3.6.1,http-client-tls
http-conduit::http-conduit,http-conduit,2.3.8.1,Package http-conduit v2.3.8.1,http-conduit
http-date::http-date,http-date,0.0.11,Package http-date v0.0.11,http-date
http-media::http-media,http-media,0.8.1.1,Package http-media v0.8.1.1,http-media
http-types::http-types,http-types,0.12.3,Package http-types v0.12.3,http-types
http2::http2,http2,4.1.4,Package http2 v4.1.4,http2
hw-kafka-client::hw-kafka-client,hw-kafka-client,4.0.3,Package hw-kafka-client v4.0.3,hw-kafka-client
ieee::ieee,ieee,0.7,Package ieee v0.7,ieee
ieee754::ieee754,ieee754,unknown,Package ieee754 vunknown,ieee754
indexed-list-literals::indexed-list-literals,indexed-list-literals,0.2.1.3,Package indexed-list-literals v0.2.1.3,indexed-list-literals
indexed-profunctors::indexed-profunctors,indexed-profunctors,0.1.1.1,Package indexed-profunctors v0.1.1.1,indexed-profunctors
indexed-traversable::indexed-traversable,indexed-traversable,0.1.2.1,Package indexed-traversable v0.1.2.1,indexed-traversable
indexed-traversable-instances::indexed-traversable-instances,indexed-traversable-instances,0.1.1.2,Package indexed-traversable-instances v0.1.1.2,indexed-traversable-instances
ini::ini,ini,0.4.2,Package ini v0.4.2,ini
inline-js::inline-js,inline-js,0.0.1.0,Package inline-js v0.0.1.0,inline-js
inline-js-core::inline-js-core,inline-js-core,0.0.1.0,Package inline-js-core v0.0.1.0,inline-js-core
insert-ordered-containers::insert-ordered-containers,insert-ordered-containers,0.2.5.3,Package insert-ordered-containers v0.2.5.3,insert-ordered-containers
inspection::inspection,inspection,testing,Package inspection vtesting,inspection
instance-control::instance-control,instance-control,0.1.2.0,Package instance-control v0.1.2.0,instance-control
int-cast::int-cast,int-cast,0.2.0.0,Package int-cast v0.2.0.0,int-cast
integer-logarithms::integer-logarithms,integer-logarithms,1.0.3.1,Package integer-logarithms v1.0.3.1,integer-logarithms
invariant::invariant,invariant,0.6.2,Package invariant v0.6.2,invariant
io-streams::io-streams,io-streams,1.5.2.2,Package io-streams v1.5.2.2,io-streams
ip::ip,ip,1.7.7,Package ip v1.7.7,ip
iproute::iproute,iproute,1.7.12,Package iproute v1.7.12,iproute
iso3166-country-codes::iso3166-country-codes,iso3166-country-codes,0.20140203.8,Package iso3166-country-codes v0.20140203.8,iso3166-country-codes
iso8601-time::iso8601-time,iso8601-time,0.1.5,Package iso8601-time v0.1.5,iso8601-time
isomorphism::isomorphism,isomorphism,class,Package isomorphism vclass,isomorphism
jose::jose,jose,0.10,Package jose v0.10,jose
jrec::jrec,jrec,0.1.0.1,Package jrec v0.1.0.1,jrec
js-chart::js-chart,js-chart,2.9.4.1,Package js-chart v2.9.4.1,js-chart
json::json,json,0.10,Package json v0.10,json
jsonifier::jsonifier,jsonifier,0.2.1.2,Package jsonifier v0.2.1.2,jsonifier
jwt::jwt,jwt,0.11.0,Package jwt v0.11.0,jwt
kan-extensions::kan-extensions,kan-extensions,5.2.5,Package kan-extensions v5.2.5,kan-extensions
keys::keys,keys,3.12.3,Package keys v3.12.3,keys
language-javascript::language-javascript,language-javascript,0.7.1.0,Package language-javascript v0.7.1.0,language-javascript
lazysmallcheck::lazysmallcheck,lazysmallcheck,unknown,Package lazysmallcheck vunknown,lazysmallcheck
lens::lens,lens,5.2.3,Package lens v5.2.3,lens
lens-aeson::lens-aeson,lens-aeson,1.2.3,Package lens-aeson v1.2.3,lens-aeson
libffi::libffi,libffi,unknown,Package libffi vunknown,libffi
libyaml::libyaml,libyaml,0.1.2,Package libyaml v0.1.2,libyaml
lifted-async::lifted-async,lifted-async,0.10.2.4,Package lifted-async v0.10.2.4,lifted-async
lifted-base::lifted-base,lifted-base,0.2.3.12,Package lifted-base v0.2.3.12,lifted-base
linear::linear,linear,base,Package linear vbase,linear
logging::logging,logging,facade,Package logging vfacade,logging
logict::logict,logict,0.8.0.0,Package logict v0.8.0.0,logict
lrucache::lrucache,lrucache,1.2.0.1,Package lrucache v1.2.0.1,lrucache
lrucaching::lrucaching,lrucaching,0.3.3,Package lrucaching v0.3.3,lrucaching
mason::mason,mason,0.2.6,Package mason v0.2.6,mason
math-functions::math-functions,math-functions,0.3.4.2,Package math-functions v0.3.4.2,math-functions
megaparsec::megaparsec,megaparsec,9.3.1,Package megaparsec v9.3.1,megaparsec
memory::memory,memory,0.18.0,Package memory v0.18.0,memory
microlens::microlens,microlens,0.4.13.1,Package microlens v0.4.13.1,microlens
microlens-mtl::microlens-mtl,microlens-mtl,0.2.0.3,Package microlens-mtl v0.2.0.3,microlens-mtl
microstache::microstache,microstache,1.0.2.3,Package microstache v1.0.2.3,microstache
mime-mail::mime-mail,mime-mail,0.5.1,Package mime-mail v0.5.1,mime-mail
mime-types::mime-types,mime-types,0.1.1.0,Package mime-types v0.1.1.0,mime-types
mmorph::mmorph,mmorph,1.2.0,Package mmorph v1.2.0,mmorph
mockery::mockery,mockery,unknown,Package mockery vunknown,mockery
monad-control::monad-control,monad-control,1.0.3.1,Package monad-control v1.0.3.1,monad-control
monad-loops::monad-loops,monad-loops,0.4.3,Package monad-loops v0.4.3,monad-loops
monad-parallel::monad-parallel,monad-parallel,0.8,Package monad-parallel v0.8,monad-parallel
monad-time::monad-time,monad-time,0.4.0.0,Package monad-time v0.4.0.0,monad-time
mono-traversable::mono-traversable,mono-traversable,1.0.15.3,Package mono-traversable v1.0.15.3,mono-traversable
mtl-compat::mtl-compat,mtl-compat,0.2.2,Package mtl-compat v0.2.2,mtl-compat
mutable-containers::mutable-containers,mutable-containers,0.3.4.1,Package mutable-containers v0.3.4.1,mutable-containers
mwc-random::mwc-random,mwc-random,0.15.0.2,Package mwc-random v0.15.0.2,mwc-random
mysql-haskell::mysql-haskell,mysql-haskell,0.8.4.3,Package mysql-haskell v0.8.4.3,mysql-haskell
named::named,named,0.3.0.1,Package named v0.3.0.1,named
nanospec::nanospec,nanospec,unknown,Package nanospec vunknown,nanospec
nats::nats,nats,1.1.2,Package nats v1.1.2,nats
natural-arithmetic::natural-arithmetic,natural-arithmetic,0.1.4.0,Package natural-arithmetic v0.1.4.0,natural-arithmetic
neat-interpolation::neat-interpolation,neat-interpolation,0.5.1.3,Package neat-interpolation v0.5.1.3,neat-interpolation
network::network,network,3.1.4.0,Package network v3.1.4.0,network
network-bsd::network-bsd,network-bsd,2.8.1.0,Package network-bsd v2.8.1.0,network-bsd
network-byte-order::network-byte-order,network-byte-order,0.1.6,Package network-byte-order v0.1.6,network-byte-order
network-info::network-info,network-info,0.2.1,Package network-info v0.2.1,network-info
network-uri::network-uri,network-uri,2.6.4.2,Package network-uri v2.6.4.2,network-uri
newtype::newtype,newtype,0.2.2.0,Package newtype v0.2.2.0,newtype
newtype-generics::newtype-generics,newtype-generics,0.6.2,Package newtype-generics v0.6.2,newtype-generics
nonempty-containers::nonempty-containers,nonempty-containers,0.3.4.4,Package nonempty-containers v0.3.4.4,nonempty-containers
nonempty-vector::nonempty-vector,nonempty-vector,0.2.2.0,Package nonempty-vector v0.2.2.0,nonempty-vector
nothunks::nothunks,nothunks,unknown,Package nothunks vunknown,nothunks
numeric::numeric,numeric,limits,Package numeric vlimits,numeric
old-locale::old-locale,old-locale,1.0.0.7,Package old-locale v1.0.0.7,old-locale
old-time::old-time,old-time,1.1.0.3,Package old-time v1.1.0.3,old-time
one::one,one,liner,Package one vliner,one
optics-core::optics-core,optics-core,0.4.1.1,Package optics-core v0.4.1.1,optics-core
optics-extra::optics-extra,optics-extra,0.4.2.1,Package optics-extra v0.4.2.1,optics-extra
optparse-applicative::optparse-applicative,optparse-applicative,0.17.1.0,Package optparse-applicative v0.17.1.0,optparse-applicative
ordered-containers::ordered-containers,ordered-containers,0.2.3,Package ordered-containers v0.2.3,ordered-containers
parallel::parallel,parallel,3.2.2.0,Package parallel v3.2.2.0,parallel
parser-combinators::parser-combinators,parser-combinators,1.3.0,Package parser-combinators v1.3.0,parser-combinators
parsers::parsers,parsers,0.12.11,Package parsers v0.12.11,parsers
paymentFlow::paymentFlow,paymentFlow,0.1.0.0,Package paymentFlow v0.1.0.0,paymentFlow
pcg-random::pcg-random,pcg-random,0.1.4.0,Package pcg-random v0.1.4.0,pcg-random
pcre-heavy::pcre-heavy,pcre-heavy,1.0.0.3,Package pcre-heavy v1.0.0.3,pcre-heavy
pcre-light::pcre-light,pcre-light,0.4.1.2,Package pcre-light v0.4.1.2,pcre-light
pcre2::pcre2,pcre2,2.1.1.1,Package pcre2 v2.1.1.1,pcre2
pem::pem,pem,0.2.4,Package pem v0.2.4,pem
pointed::pointed,pointed,5.0.4,Package pointed v5.0.4,pointed
postgresql-libpq::postgresql-libpq,postgresql-libpq,0.9.5.0,Package postgresql-libpq v0.9.5.0,postgresql-libpq
postgresql-simple::postgresql-simple,postgresql-simple,0.6.5.1,Package postgresql-simple v0.6.5.1,postgresql-simple
pqueue::pqueue,pqueue,1.4.3.0,Package pqueue v1.4.3.0,pqueue
pretty::pretty,pretty,hex,Package pretty vhex,pretty
pretty-show::pretty-show,pretty-show,1.10,Package pretty-show v1.10,pretty-show
prettyprinter::prettyprinter,prettyprinter,1.7.1,Package prettyprinter v1.7.1,prettyprinter
prettyprinter-ansi::prettyprinter-ansi,prettyprinter-ansi,terminal,Package prettyprinter-ansi vterminal,prettyprinter-ansi
primitive::primitive,primitive,0.8.0.0,Package primitive v0.8.0.0,primitive
primitive-addr::primitive-addr,primitive-addr,0.1.0.2,Package primitive-addr v0.1.0.2,primitive-addr
primitive-offset::primitive-offset,primitive-offset,0.2.0.0,Package primitive-offset v0.2.0.0,primitive-offset
primitive-unaligned::primitive-unaligned,primitive-unaligned,0.1.1.2,Package primitive-unaligned v0.1.1.2,primitive-unaligned
primitive-unlifted::primitive-unlifted,primitive-unlifted,0.1.3.1,Package primitive-unlifted v0.1.3.1,primitive-unlifted
profunctors::profunctors,profunctors,5.6.2,Package profunctors v5.6.2,profunctors
prometheus-client::prometheus-client,prometheus-client,1.0.0.1,Package prometheus-client v1.0.0.1,prometheus-client
prometheus-metrics-ghc::prometheus-metrics-ghc,prometheus-metrics-ghc,1.0.1,Package prometheus-metrics-ghc v1.0.1,prometheus-metrics-ghc
prometheus-proc::prometheus-proc,prometheus-proc,0.1.3.0,Package prometheus-proc v0.1.3.0,prometheus-proc
psqueues::psqueues,psqueues,0.2.7.3,Package psqueues v0.2.7.3,psqueues
ptr-poker::ptr-poker,ptr-poker,0.1.2.13,Package ptr-poker v0.1.2.13,ptr-poker
pureMD5::pureMD5,pureMD5,unknown,Package pureMD5 vunknown,pureMD5
qrcode-core::qrcode-core,qrcode-core,0.9.8,Package qrcode-core v0.9.8,qrcode-core
qrcode-juicypixels::qrcode-juicypixels,qrcode-juicypixels,0.8.5,Package qrcode-juicypixels v0.8.5,qrcode-juicypixels
quickcheck::quickcheck,quickcheck,classes,Package quickcheck vclasses,quickcheck
quickcheck-classes::quickcheck-classes,quickcheck-classes,base,Package quickcheck-classes vbase,quickcheck-classes
quickcheck-instances::quickcheck-instances,quickcheck-instances,0.3.29.1,Package quickcheck-instances v0.3.29.1,quickcheck-instances
quickcheck-io::quickcheck-io,quickcheck-io,0.2.0,Package quickcheck-io v0.2.0,quickcheck-io
random::random,random,1.2.1.1,Package random v1.2.1.1,random
random-bytestring::random-bytestring,random-bytestring,0.1.4,Package random-bytestring v0.1.4,random-bytestring
random-fu::random-fu,random-fu,0.3.0.1,Package random-fu v0.3.0.1,random-fu
random-shuffle::random-shuffle,random-shuffle,0.0.4,Package random-shuffle v0.0.4,random-shuffle
raven-haskell::raven-haskell,raven-haskell,0.1.4.1,Package raven-haskell v0.1.4.1,raven-haskell
raw-strings::raw-strings,raw-strings,qq,Package raw-strings vqq,raw-strings
rawstring-qm::rawstring-qm,rawstring-qm,0.2.3.0,Package rawstring-qm v0.2.3.0,rawstring-qm
rebase::rebase,rebase,unknown,Package rebase vunknown,rebase
record-dot-preprocessor::record-dot-preprocessor,record-dot-preprocessor,0.2.16,Package record-dot-preprocessor v0.2.16,record-dot-preprocessor
record-hasfield::record-hasfield,record-hasfield,1.0,Package record-hasfield v1.0,record-hasfield
recover-rtti::recover-rtti,recover-rtti,0.4.3,Package recover-rtti v0.4.3,recover-rtti
recursion-schemes::recursion-schemes,recursion-schemes,5.2.2.4,Package recursion-schemes v5.2.2.4,recursion-schemes
recv::recv,recv,0.1.0,Package recv v0.1.0,recv
reducers::reducers,reducers,unknown,Package reducers vunknown,reducers
references::references,references,0.4.0.0,Package references v0.4.0.0,references
reflection::reflection,reflection,2.1.7,Package reflection v2.1.7,reflection
regex-applicative::regex-applicative,regex-applicative,0.3.4,Package regex-applicative v0.3.4,regex-applicative
regex-base::regex-base,regex-base,0.94.0.2,Package regex-base v0.94.0.2,regex-base
regex-compat::regex-compat,regex-compat,0.95.2.1,Package regex-compat v0.95.2.1,regex-compat
regex-pcre::regex-pcre,regex-pcre,0.95.0.0,Package regex-pcre v0.95.0.0,regex-pcre
regex-posix::regex-posix,regex-posix,0.96.0.1,Package regex-posix v0.96.0.1,regex-posix
regex-tdfa::regex-tdfa,regex-tdfa,1.3.2.2,Package regex-tdfa v1.3.2.2,regex-tdfa
rerebase::rerebase,rerebase,unknown,Package rerebase vunknown,rerebase
resourcet::resourcet,resourcet,1.2.6,Package resourcet v1.2.6,resourcet
retry::retry,retry,0.9.3.1,Package retry v0.9.3.1,retry
run-st::run-st,run-st,0.1.3.0,Package run-st v0.1.3.0,run-st
rvar::rvar,rvar,0.3.0.2,Package rvar v0.3.0.2,rvar
safe::safe,safe,0.3.19,Package safe v0.3.19,safe
safe-exceptions::safe-exceptions,safe-exceptions,0.1.7.4,Package safe-exceptions v0.1.7.4,safe-exceptions
say::say,say,0.1.0.1,Package say v0.1.0.1,say
scanner::scanner,scanner,0.3.1,Package scanner v0.3.1,scanner
scientific::scientific,scientific,0.3.7.0,Package scientific v0.3.7.0,scientific
securemem::securemem,securemem,0.1.10,Package securemem v0.1.10,securemem
selective::selective,selective,0.7,Package selective v0.7,selective
semialign::semialign,semialign,1.3,Package semialign v1.3,semialign
semigroupoids::semigroupoids,semigroupoids,5.3.7,Package semigroupoids v5.3.7,semigroupoids
semigroups::semigroups,semigroups,0.20,Package semigroups v0.20,semigroups
semirings::semirings,semirings,unknown,Package semirings vunknown,semirings
servant::servant,servant,0.19.1,Package servant v0.19.1,servant
servant-client::servant-client,servant-client,0.19,Package servant-client v0.19,servant-client
servant-client-core::servant-client-core,servant-client-core,0.19,Package servant-client-core v0.19,servant-client-core
servant-server::servant-server,servant-server,0.19.2,Package servant-server v0.19.2,servant-server
setenv::setenv,setenv,0.1.1.3,Package setenv v0.1.1.3,setenv
shelly::shelly,shelly,1.12.1,Package shelly v1.12.1,shelly
sheriff::sheriff,sheriff,0.2.1.8,Package sheriff v0.2.1.8,sheriff
should-not::should-not,should-not,typecheck,Package should-not vtypecheck,should-not
show-combinators::show-combinators,show-combinators,0.2.0.0,Package show-combinators v0.2.0.0,show-combinators
silently::silently,silently,unknown,Package silently vunknown,silently
simple-cmd::simple-cmd,simple-cmd,0.2.7,Package simple-cmd v0.2.7,simple-cmd
simple::simple,simple,reflect,Package simple vreflect,simple
simple-sendfile::simple-sendfile,simple-sendfile,0.2.32,Package simple-sendfile v0.2.32,simple-sendfile
singleton-bool::singleton-bool,singleton-bool,0.1.6,Package singleton-bool v0.1.6,singleton-bool
smallcheck::smallcheck,smallcheck,1.2.1.1,Package smallcheck v1.2.1.1,smallcheck
smtp-mail::smtp-mail,smtp-mail,0.3.0.0,Package smtp-mail v0.3.0.0,smtp-mail
socket-lib::socket-lib,socket-lib,0.1.0.0,Package socket-lib v0.1.0.0,socket-lib
socks::socks,socks,0.6.1,Package socks v0.6.1,socks
some::some,some,1.0.4.1,Package some v1.0.4.1,some
sop-core::sop-core,sop-core,0.5.0.2,Package sop-core v0.5.0.2,sop-core
sort::sort,sort,1.0.0.0,Package sort v1.0.0.0,sort
split::split,split,0.2.3.5,Package split v0.2.3.5,split
splitmix::splitmix,splitmix,0.1.0.4,Package splitmix v0.1.0.4,splitmix
sqlite-simple::sqlite-simple,sqlite-simple,0.4.18.2,Package sqlite-simple v0.4.18.2,sqlite-simple
statistics::statistics,statistics,0.16.2.1,Package statistics v0.16.2.1,statistics
storable::storable,storable,record,Package storable vrecord,storable
store::store,store,0.7.16,Package store v0.7.16,store
store-core::store-core,store-core,0.4.4.4,Package store-core v0.4.4.4,store-core
streaming-commons::streaming-commons,streaming-commons,0.2.2.6,Package streaming-commons v0.2.2.6,streaming-commons
streamly-core::streamly-core,streamly-core,0.2.0,Package streamly-core v0.2.0,streamly-core
streamly-serialize-instances::streamly-serialize-instances,streamly-serialize-instances,0.1.0,Package streamly-serialize-instances v0.1.0,streamly-serialize-instances
strict::strict,strict,0.5,Package strict v0.5,strict
string-conversions::string-conversions,string-conversions,0.4.0.1,Package string-conversions v0.4.0.1,string-conversions
stringbuilder::stringbuilder,stringbuilder,unknown,Package stringbuilder vunknown,stringbuilder
suspend::suspend,suspend,0.2.0.0,Package suspend v0.2.0.0,suspend
syb::syb,syb,0.7.2.4,Package syb v0.7.2.4,syb
tagged::tagged,tagged,0.8.7,Package tagged v0.8.7,tagged
tagsoup::tagsoup,tagsoup,0.14.8,Package tagsoup v0.14.8,tagsoup
tasty::tasty,tasty,1.4.3,Package tasty v1.4.3,tasty
tasty-discover::tasty-discover,tasty-discover,5.0.0,Package tasty-discover v5.0.0,tasty-discover
tasty-expected::tasty-expected,tasty-expected,failure,Package tasty-expected vfailure,tasty-expected
tasty-hunit::tasty-hunit,tasty-hunit,0.10.1,Package tasty-hunit v0.10.1,tasty-hunit
tasty-inspection::tasty-inspection,tasty-inspection,testing,Package tasty-inspection vtesting,tasty-inspection
tasty-quickcheck::tasty-quickcheck,tasty-quickcheck,0.10.2,Package tasty-quickcheck v0.10.2,tasty-quickcheck
tasty-wai::tasty-wai,tasty-wai,0.1.2.0,Package tasty-wai v0.1.2.0,tasty-wai
tcp-streams::tcp-streams,tcp-streams,1.0.1.1,Package tcp-streams v1.0.1.1,tcp-streams
temporary::temporary,temporary,1.3,Package temporary v1.3,temporary
terminal-size::terminal-size,terminal-size,0.3.4,Package terminal-size v0.3.4,terminal-size
test::test,test,framework,Package test vframework,test
test-framework::test-framework,test-framework,hunit,Package test-framework vhunit,test-framework
text-format::text-format,text-format,0.3.2.1,Package text-format v0.3.2.1,text-format
text-short::text-short,text-short,0.1.5,Package text-short v0.1.5,text-short
tf-random::tf-random,tf-random,0.5,Package tf-random v0.5,tf-random
th-abstraction::th-abstraction,th-abstraction,0.4.5.0,Package th-abstraction v0.4.5.0,th-abstraction
th-compat::th-compat,th-compat,0.1.4,Package th-compat v0.1.4,th-compat
th-expand-syns::th-expand-syns,th-expand-syns,0.4.11.0,Package th-expand-syns v0.4.11.0,th-expand-syns
th-lift::th-lift,th-lift,0.8.4,Package th-lift v0.8.4,th-lift
th-lift-instances::th-lift-instances,th-lift-instances,0.1.20,Package th-lift-instances v0.1.20,th-lift-instances
th-orphans::th-orphans,th-orphans,0.13.14,Package th-orphans v0.13.14,th-orphans
th-reify-many::th-reify-many,th-reify-many,0.1.10,Package th-reify-many v0.1.10,th-reify-many
th-utilities::th-utilities,th-utilities,0.2.5.0,Package th-utilities v0.2.5.0,th-utilities
these::these,these,1.2,Package these v1.2,these
time-compat::time-compat,time-compat,1.9.6.1,Package time-compat v1.9.6.1,time-compat
time-locale-compat::time-locale-compat,time-locale-compat,0.1.1.5,Package time-locale-compat v0.1.1.5,time-locale-compat
time-manager::time-manager,time-manager,0.0.1,Package time-manager v0.0.1,time-manager
timers::timers,timers,0.2.0.4,Package timers v0.2.0.4,timers
timespan::timespan,timespan,0.4.0.0,Package timespan v0.4.0.0,timespan
tinylog::tinylog,tinylog,0.16.0,Package tinylog v0.16.0,tinylog
tls::tls,tls,1.6.0,Package tls v1.6.0,tls
transformers-base::transformers-base,transformers-base,0.4.6,Package transformers-base v0.4.6,transformers-base
transformers-compat::transformers-compat,transformers-compat,0.7.2,Package transformers-compat v0.7.2,transformers-compat
transformers-either::transformers-either,transformers-either,0.1.4,Package transformers-either v0.1.4,transformers-either
tree-diff::tree-diff,tree-diff,0.3.0.1,Package tree-diff v0.3.0.1,tree-diff
trifecta::trifecta,trifecta,unknown,Package trifecta vunknown,trifecta
tuples::tuples,tuples,0.1.0.0,Package tuples v0.1.0.0,tuples
type-equality::type-equality,type-equality,1,Package type-equality v1,type-equality
typed-process::typed-process,typed-process,0.2.11.0,Package typed-process v0.2.11.0,typed-process
unagi-chan::unagi-chan,unagi-chan,0.4.1.4,Package unagi-chan v0.4.1.4,unagi-chan
unbounded::unbounded,unbounded,delays,Package unbounded vdelays,unbounded
uniplate::uniplate,uniplate,1.6.13,Package uniplate v1.6.13,uniplate
universe-base::universe-base,universe-base,1.1.3.1,Package universe-base v1.1.3.1,universe-base
universum::universum,universum,1.8.2,Package universum v1.8.2,universum
unix-compat::unix-compat,unix-compat,0.7,Package unix-compat v0.7,unix-compat
unix-memory::unix-memory,unix-memory,0.1.2,Package unix-memory v0.1.2,unix-memory
unix-time::unix-time,unix-time,0.4.11,Package unix-time v0.4.11,unix-time
unliftio::unliftio,unliftio,0.2.25.0,Package unliftio v0.2.25.0,unliftio
unliftio-core::unliftio-core,unliftio-core,0.2.1.0,Package unliftio-core v0.2.1.0,unliftio-core
unordered-containers::unordered-containers,unordered-containers,0.2.18.0,Package unordered-containers v0.2.18.0,unordered-containers
uri-encode::uri-encode,uri-encode,1.5.0.7,Package uri-encode v1.5.0.7,uri-encode
url::url,url,2.1.3,Package url v2.1.3,url
utf8::utf8,utf8,light,Package utf8 vlight,utf8
utf8-string::utf8-string,utf8-string,1.0.2,Package utf8-string v1.0.2,utf8-string
utility::utility,utility,ht,Package utility vht,utility
uuid::uuid,uuid,1.3.15,Package uuid v1.3.15,uuid
uuid-types::uuid-types,uuid-types,1.0.5,Package uuid-types v1.0.5,uuid-types
validation::validation,validation,1.1.3,Package validation v1.1.3,validation
validation-selective::validation-selective,validation-selective,0.2.0.0,Package validation-selective v0.2.0.0,validation-selective
vault::vault,vault,0.3.1.5,Package vault v0.3.1.5,vault
vector::vector,vector,0.13.0.0,Package vector v0.13.0.0,vector
vector-algorithms::vector-algorithms,vector-algorithms,0.9.0.1,Package vector-algorithms v0.9.0.1,vector-algorithms
vector-binary-instances::vector-binary-instances,vector-binary-instances,0.2.5.2,Package vector-binary-instances v0.2.5.2,vector-binary-instances
vector-instances::vector-instances,vector-instances,3.4.2,Package vector-instances v3.4.2,vector-instances
vector-sized::vector-sized,vector-sized,1.5.0,Package vector-sized v1.5.0,vector-sized
vector-stream::vector-stream,vector-stream,0.1.0.0,Package vector-stream v0.1.0.0,vector-stream
vector-th-unbox::vector-th-unbox,vector-th-unbox,0.2.2,Package vector-th-unbox v0.2.2,vector-th-unbox
void::void,void,0.7.3,Package void v0.7.3,void
wai::wai,wai,3.2.3,Package wai v3.2.3,wai
wai-app-static::wai-app-static,wai-app-static,3.1.8,Package wai-app-static v3.1.8,wai-app-static
wai-cors::wai-cors,wai-cors,0.2.7,Package wai-cors v0.2.7,wai-cors
wai-extra::wai-extra,wai-extra,3.1.13.0,Package wai-extra v3.1.13.0,wai-extra
wai-logger::wai-logger,wai-logger,2.4.0,Package wai-logger v2.4.0,wai-logger
wai-middleware-prometheus::wai-middleware-prometheus,wai-middleware-prometheus,1.0.0,Package wai-middleware-prometheus v1.0.0,wai-middleware-prometheus
warner::warner,warner,0.1.0.0,Package warner v0.1.0.0,warner
warp::warp,warp,3.3.25,Package warp v3.3.25,warp
which::which,which,0.2.0.1,Package which v0.2.0.1,which
wide-word::wide-word,wide-word,0.1.5.0,Package wide-word v0.1.5.0,wide-word
wire-streams::wire-streams,wire-streams,0.1.1.0,Package wire-streams v0.1.1.0,wire-streams
witherable::witherable,witherable,0.4.2,Package witherable v0.4.2,witherable
wl-pprint-annotated::wl-pprint-annotated,wl-pprint-annotated,0.1.0.1,Package wl-pprint-annotated v0.1.0.1,wl-pprint-annotated
word-compat::word-compat,word-compat,0.0.6,Package word-compat v0.0.6,word-compat
word24::word24,word24,2.0.1,Package word24 v2.0.1,word24
word8::word8,word8,0.1.3,Package word8 v0.1.3,word8
x509::x509,x509,1.7.7,Package x509 v1.7.7,x509
x509-store::x509-store,x509-store,1.6.9,Package x509-store v1.6.9,x509-store
x509-system::x509-system,x509-system,1.6.7,Package x509-system v1.6.7,x509-system
x509-validation::x509-validation,x509-validation,1.6.12,Package x509-validation v1.6.12,x509-validation
xeno::xeno,xeno,0.6,Package xeno v0.6,xeno
xml::xml,xml,unknown,Package xml vunknown,xml
xml-conduit::xml-conduit,xml-conduit,1.9.1.3,Package xml-conduit v1.9.1.3,xml-conduit
xml-types::xml-types,xml-types,0.3.8,Package xml-types v0.3.8,xml-types
xmlbf::xmlbf,xmlbf,0.7,Package xmlbf v0.7,xmlbf
xmlbf-xeno::xmlbf-xeno,xmlbf-xeno,0.2.2,Package xmlbf-xeno v0.2.2,xmlbf-xeno
yaml::yaml,yaml,0.11.11.2,Package yaml v0.11.11.2,yaml
zigzag::zigzag,zigzag,0.0.1.0,Package zigzag v0.0.1.0,zigzag
zlib::zlib,zlib,0.6.3.0,Package zlib v0.6.3.0,zlib
zlib-bindings::zlib-bindings,zlib-bindings,0.1.1.5,Package zlib-bindings v0.1.1.5,zlib-bindings
zstd::zstd,zstd,0.1.3.0,Package zstd v0.1.3.0,zstd