forked from CardanoSolutions/kupo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stack.yaml.lock
1251 lines (1250 loc) · 45.6 KB
/
stack.yaml.lock
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
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file was autogenerated by Stack.
# You should not edit this file by hand.
# For more information, please see the documentation at:
# https://docs.haskellstack.org/en/stable/lock_files
packages:
- completed:
hackage: aeson-2.0.3.0@sha256:130bda8e10dc6dd159b79b306abb10025d7f8b5d9cbc2f7d6d7e6768a0272058,5845
pantry-tree:
size: 38191
sha256: bccfc5a7259a27aad7e4193f367c3d7d67799f42632fdcb90241c1e9fbb0cf40
original:
hackage: aeson-2.0.3.0
- completed:
hackage: async-timer-0.2.0.0@sha256:e1504aa0fb5932cb07498ec548180aba9e03a3e7f5d2c810bf3dce75fbdd34d6,2048
pantry-tree:
size: 420
sha256: f6e0f4929cf25a1b6e732cbc9c7a8902e922d8c989c3cf9e0623052847857c94
original:
hackage: async-timer-0.2.0.0
- completed:
hackage: canonical-json-0.6.0.0@sha256:9021f435ccb884a3b4c55bcc6b50eb19d5fc3cc3f29d5fcbdef016f5bbae23a2,3488
pantry-tree:
size: 646
sha256: 18e3afbd09480a247cd39355929d638e0888ccd2c3873cb79c5a5bc2231fae4f
original:
hackage: canonical-json-0.6.0.0
- completed:
hackage: composition-prelude-3.0.0.2@sha256:1ffed216bd28d810fce0b5be83a661e2a892696d73b3f8de5c0f5edb9b5f0090,1216
pantry-tree:
size: 284
sha256: 94fc1c55e9065ae575315ac52a552d0e03beaefef4669a58a9745c6d71b4dd6b
original:
hackage: composition-prelude-3.0.0.2
- completed:
hackage: constraints-extras-0.3.1.0@sha256:c70fcf437e1d640cfd50a8eda1db47a64e49c96857e08fd0d8c438327d908ac1,1846
pantry-tree:
size: 595
sha256: f29920355b21ef7a7218573591aa740b01b3d1fb3b0bbd66e2f726d091d56fb2
original:
hackage: constraints-extras-0.3.1.0
- completed:
hackage: contra-tracers-1.0.0@sha256:2655225416daee4609128c2bb238d89e8ce820cc1c23ef9286c72c27995a61dd,2202
pantry-tree:
size: 344
sha256: 658250236d8a778da893e9bd93404d5e3563a251c2621ef202d2abbc78d25d38
original:
hackage: contra-tracers-1.0.0
- completed:
hackage: dom-lt-0.2.3@sha256:89f17bbeb0d23f5a46fe7099b81cc9b4b5df32aadb5080fc171c874aafc802c0,1850
pantry-tree:
size: 442
sha256: 7daf5082515248f0d0d0b7d164d079f970318e26d39f1ffd15519bd22bbe559a
original:
hackage: dom-lt-0.2.3
- completed:
hackage: fast-bech32-1.0.0@sha256:3d92ae075d8121ea46527fb4a8b2076225d740a0b84ce28a00bfea3d9fa3d880,5063
pantry-tree:
size: 476
sha256: 53c28c182bf6b09368cd1fd53a066b90bbae6a3deba7d38799472f2d7fd05db8
original:
hackage: fast-bech32-1.0.0
- completed:
hackage: gray-code-0.3.1@sha256:2c8a4ed9c9ee37320305610604d6d93504e0813d7c9768949af418b53043185a,2388
pantry-tree:
size: 506
sha256: 7b133d19b93231ea84b286cfe1a2038d67f9b553826845b33fad6526464e1de7
original:
hackage: gray-code-0.3.1
- completed:
hackage: hedgehog-1.1.1@sha256:301b45815b0e265a683aba0971c1246bfce0ad60b09fcd60bc782016254a291a,4639
pantry-tree:
size: 2646
sha256: 11a4efb8958b8958cdc26eae0517099140c2b7b2f9d3e876db5bb6eaa4edb618
original:
hackage: hedgehog-1.1.1
- completed:
hackage: lazy-search-0.1.2.1@sha256:c942a01e4a64881f89c72eaef5e3a78eba8750759cd66996c6746a2a7cabe703,1199
pantry-tree:
size: 279
sha256: 824505340a62d82742882c1fa57a0532e0ae3c69cbb7947fe758ce47b93af2dd
original:
hackage: lazy-search-0.1.2.1
- completed:
hackage: markov-chain-usage-model-0.0.0@sha256:1afa95faeb9213c4d960a669190078b41b89169462b8edd910472980671ba8c0,2112
pantry-tree:
size: 432
sha256: 6871bd9281acf589296d0998a3d62892b036040ab10e74e8a0f356f68c194f4f
original:
hackage: markov-chain-usage-model-0.0.0
- completed:
hackage: monoidal-containers-0.6.2.0@sha256:124941d70df5e2928b4c6db605a1d0464e68c2c6b02e426db24a40194d43821d,2219
pantry-tree:
size: 569
sha256: 07ceac751866bad09af45df7d0ae97420d659221e8a0d85407705dcda1f6e89b
original:
hackage: monoidal-containers-0.6.2.0
- completed:
hackage: moo-1.2@sha256:0c4be1a01548db785dcbbe6b8c98579dbf03c5b3b536e0420dce3ba6a61337cb,5951
pantry-tree:
size: 2861
sha256: a32c48fefc42e1f7775c868794a91604522a59a1c0d2b2accff12197329f2d17
original:
hackage: moo-1.2
- completed:
hackage: network-3.1.2.2@sha256:218e2968e03d99c40f32a2ef7cc41a848969096ba1c780ff2e57997a00246b06,4781
pantry-tree:
size: 3971
sha256: a4e25a1e953ac5cc7ee25ab141aa2f23418e02251ffe6ba47748fbe27da87462
original:
hackage: network-3.1.2.2
- completed:
hackage: nothunks-0.1.3@sha256:33bb3af223163535fa59d1fa83ba95a355106ba3fcffe5452d4abbf13ab4608d,2521
pantry-tree:
size: 342
sha256: d820c85513f1096f80721aca248201eea865f44b812706c843f55d7b2a7ab289
original:
hackage: nothunks-0.1.3
- completed:
hackage: OneTuple-0.3.1@sha256:a848c096c9d29e82ffdd30a9998aa2931cbccb3a1bc137539d80f6174d31603e,2262
pantry-tree:
size: 506
sha256: a685b08622f1fe0641e4f228a290878a1db4f7ef3eb63d00b10e8632097d1e6f
original:
hackage: OneTuple-0.3.1
- completed:
hackage: openapi3-3.2.2@sha256:419d0f12ed404581a561095ed78582b86e404f95c2e6b347238d78b2abe49805,4896
pantry-tree:
size: 2263
sha256: 46d01d4cccc37aecddaaca0d08aa516ab762507d78f6d7cc9b720ba223cd8b94
original:
hackage: openapi3-3.2.2
- completed:
hackage: partial-order-0.2.0.0@sha256:a0d6ddc9ebcfa965a5cbcff1d06d46a79d44ea5a0335c583c2a51bcb41334487,2275
pantry-tree:
size: 273
sha256: 674243e0470949fa81a6025ae0ddb1c52c48cffbf163249868563ec826eaadc5
original:
hackage: partial-order-0.2.0.0
- completed:
hackage: quickcheck-state-machine-0.7.1@sha256:575f16ece44b20f204730b7b5d77a1ed91b33f4a961a4e70932fc8d602082b10,6153
pantry-tree:
size: 3022
sha256: edb32e2c7ac3be15e0d110b762990192d993326779f440984e56de0be5e0f714
original:
hackage: quickcheck-state-machine-0.7.1
- completed:
hackage: ral-0.1@sha256:846216dc676f8857236de6588d136eeda33f6f49f40a8d1c31d73f59d9f77928,3264
pantry-tree:
size: 805
sha256: 41607476c4fd5c375e1fa8d9ad99ec8b8e359b3932e597d06ca6fcda88d4822d
original:
hackage: ral-0.1
- completed:
hackage: semialign-1.2.0.1@sha256:0e179b4d3a8eff79001d374d6c91917c6221696b9620f0a4d86852fc6a9b9501,2836
pantry-tree:
size: 537
sha256: 635bbbb517f0c063a4bc2e9e6efdb0e598b9d9fd467f52df81ab3a4af1fd923b
original:
hackage: semialign-1.2.0.1
- completed:
hackage: size-based-0.1.2.0@sha256:1b33da89d270189661dbbda49a88b0c21d2fc2f7a407e7a2b1933e2faf0f5d4d,1258
pantry-tree:
size: 480
sha256: 2c8a16986903aecfc14ada381ff9f369e218feaf5dc90e934e93ecbf83905b1a
original:
hackage: size-based-0.1.2.0
- completed:
hackage: statistics-linreg-0.3@sha256:95c6efe6c7f6b26bc6e9ada90ab2d18216371cf59a6ef2b517b4a6fd35d9a76f,2544
pantry-tree:
size: 233
sha256: 8d1978a6497e4fd9c66b0c5f24ea659aa9714f5b7e8b1dcfce7fb7bb8d4dee0e
original:
hackage: statistics-linreg-0.3
- completed:
hackage: streaming-binary-0.2.2.0@sha256:09b9a9b0291199c5808e88dcf9c93e7b336e740c71efeafd7c835b59794a8c90,1034
pantry-tree:
size: 443
sha256: ffd0144733bfcc342107f912505618eb5b6f4f856d294bc100a6d3c611cdfd45
original:
hackage: streaming-binary-0.2.2.0
- completed:
hackage: transformers-except-0.1.2@sha256:2ff895fd65ec9e45cbe839ef5b66e26b7d9f3fe561148993293a41e14491e625,1548
pantry-tree:
size: 276
sha256: 255031ad4b86a6f3cecd01752ba63186d54c07dd4f667ed77033326970f0120c
original:
hackage: transformers-except-0.1.2
- completed:
hackage: Unique-0.4.7.9@sha256:a7e154cf6d05169777a1e54aadab24fb3a6eae3ee167e5e77d7ba96d182436c7,2064
pantry-tree:
size: 1366
sha256: eb62502b1de8adee91f0feb104a36f87a21a9367f95295d4f12c73183a9b1e54
original:
hackage: Unique-0.4.7.9
- completed:
subdir: base-deriving-via
name: base-deriving-via
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-base
pantry-tree:
size: 394
sha256: d45651f16e1d4fb01530e720ed070d4062a2b37c36fa285d40a9031d631ba616
commit: 0f3a867493059e650cda69e20a5cbf1ace289a57
original:
subdir: base-deriving-via
git: https://github.com/input-output-hk/cardano-base
commit: 0f3a867493059e650cda69e20a5cbf1ace289a57
- completed:
subdir: binary
name: cardano-binary
version: 1.5.0
git: https://github.com/input-output-hk/cardano-base
pantry-tree:
size: 1884
sha256: 45318c022814c857757be9615a4beea18ac99fc7c0bedd3d22c7f7dbf36620e0
commit: 0f3a867493059e650cda69e20a5cbf1ace289a57
original:
subdir: binary
git: https://github.com/input-output-hk/cardano-base
commit: 0f3a867493059e650cda69e20a5cbf1ace289a57
- completed:
subdir: binary/test
name: cardano-binary-test
version: 1.3.0
git: https://github.com/input-output-hk/cardano-base
pantry-tree:
size: 1007
sha256: 8def6e17527380b70fe61a9abb31b29608f0cfbb7397de5ad50b844e88039d23
commit: 0f3a867493059e650cda69e20a5cbf1ace289a57
original:
subdir: binary/test
git: https://github.com/input-output-hk/cardano-base
commit: 0f3a867493059e650cda69e20a5cbf1ace289a57
- completed:
subdir: cardano-crypto-class
name: cardano-crypto-class
version: 2.0.0
git: https://github.com/input-output-hk/cardano-base
pantry-tree:
size: 3847
sha256: 572f6c9a301510f8e4e59b3a708b05614af28ce508d435cf5ceb28d7ffb7212d
commit: 0f3a867493059e650cda69e20a5cbf1ace289a57
original:
subdir: cardano-crypto-class
git: https://github.com/input-output-hk/cardano-base
commit: 0f3a867493059e650cda69e20a5cbf1ace289a57
- completed:
subdir: cardano-crypto-praos
name: cardano-crypto-praos
version: 2.0.0
git: https://github.com/input-output-hk/cardano-base
pantry-tree:
size: 2758
sha256: 7c1ce3e080f0397d8fb29bc4f91408cbf5945232aae5cbe9c6c450d8c2de5fec
commit: 0f3a867493059e650cda69e20a5cbf1ace289a57
original:
subdir: cardano-crypto-praos
git: https://github.com/input-output-hk/cardano-base
commit: 0f3a867493059e650cda69e20a5cbf1ace289a57
- completed:
subdir: cardano-crypto-tests
name: cardano-crypto-tests
version: 2.0.0
git: https://github.com/input-output-hk/cardano-base
pantry-tree:
size: 878
sha256: b426f60d4ac843a90829dcf63b2a6d5397da63771c34140cb0033486a36b816d
commit: 0f3a867493059e650cda69e20a5cbf1ace289a57
original:
subdir: cardano-crypto-tests
git: https://github.com/input-output-hk/cardano-base
commit: 0f3a867493059e650cda69e20a5cbf1ace289a57
- completed:
subdir: measures
name: measures
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-base
pantry-tree:
size: 395
sha256: d3f61763e1dfa87bdaa664045fbfac416bbfa870a32475fe96664a3659270e8a
commit: 0f3a867493059e650cda69e20a5cbf1ace289a57
original:
subdir: measures
git: https://github.com/input-output-hk/cardano-base
commit: 0f3a867493059e650cda69e20a5cbf1ace289a57
- completed:
subdir: orphans-deriving-via
name: orphans-deriving-via
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-base
pantry-tree:
size: 307
sha256: cdac444af4c86a210961ed4d7b91ff697244348057089f8a04fc8419a6bb5ca4
commit: 0f3a867493059e650cda69e20a5cbf1ace289a57
original:
subdir: orphans-deriving-via
git: https://github.com/input-output-hk/cardano-base
commit: 0f3a867493059e650cda69e20a5cbf1ace289a57
- completed:
subdir: slotting
name: cardano-slotting
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-base
pantry-tree:
size: 855
sha256: d4475bef45d09322f783126f01233a25dcd864094139b6b6848ec1c1d0e028ea
commit: 0f3a867493059e650cda69e20a5cbf1ace289a57
original:
subdir: slotting
git: https://github.com/input-output-hk/cardano-base
commit: 0f3a867493059e650cda69e20a5cbf1ace289a57
- completed:
subdir: strict-containers
name: strict-containers
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-base
pantry-tree:
size: 473
sha256: 4bdac1a123608e2fff974551b88b596f88a74730402af6fadc7b0043db1bd9f7
commit: 0f3a867493059e650cda69e20a5cbf1ace289a57
original:
subdir: strict-containers
git: https://github.com/input-output-hk/cardano-base
commit: 0f3a867493059e650cda69e20a5cbf1ace289a57
- completed:
name: cardano-crypto
version: 1.1.0
git: https://github.com/input-output-hk/cardano-crypto
pantry-tree:
size: 5300
sha256: e47672988b56ef3c3bae513ab3cc1a50d492c75f598fcfb234d1db37bbacbada
commit: f73079303f663e028288f9f4a9e08bcca39a923e
original:
git: https://github.com/input-output-hk/cardano-crypto
commit: f73079303f663e028288f9f4a9e08bcca39a923e
- completed:
subdir: eras/alonzo/impl
name: cardano-ledger-alonzo
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-ledger
pantry-tree:
size: 1726
sha256: 78980d2dd95d55422d5621d150d3261c179d17fdc3b5ff5b511043d922389935
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
original:
subdir: eras/alonzo/impl
git: https://github.com/input-output-hk/cardano-ledger
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
- completed:
subdir: eras/alonzo/test-suite
name: cardano-ledger-alonzo-test
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-ledger
pantry-tree:
size: 2050
sha256: 1e03e7b936e711475c3406db21349750551ca529e21403cbac609eb4312a8e67
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
original:
subdir: eras/alonzo/test-suite
git: https://github.com/input-output-hk/cardano-ledger
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
- completed:
subdir: eras/babbage/impl
name: cardano-ledger-babbage
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-ledger
pantry-tree:
size: 1189
sha256: 994613c75606642a70cb661a5e4ae5df9c1348413430985571bfb046c2073b3a
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
original:
subdir: eras/babbage/impl
git: https://github.com/input-output-hk/cardano-ledger
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
- completed:
subdir: eras/babbage/test-suite
name: cardano-ledger-babbage-test
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-ledger
pantry-tree:
size: 1006
sha256: e12ecff809cde7a4b9645589e4dabd828dd03cc94d64dbbcd3827aab0d049eb5
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
original:
subdir: eras/babbage/test-suite
git: https://github.com/input-output-hk/cardano-ledger
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
- completed:
subdir: eras/byron/chain/executable-spec
name: byron-spec-chain
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-ledger
pantry-tree:
size: 1029
sha256: b9c7a722a73c3501a88fdc1bc1d3fec135130730a727fedec201cd70ffae44e8
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
original:
subdir: eras/byron/chain/executable-spec
git: https://github.com/input-output-hk/cardano-ledger
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
- completed:
subdir: eras/byron/crypto
name: cardano-crypto-wrapper
version: 1.3.0
git: https://github.com/input-output-hk/cardano-ledger
pantry-tree:
size: 4430
sha256: 2a386491bd1f69ffb591b29f07f1232791edb39c15aa2ca638d4f1f42e65a45b
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
original:
subdir: eras/byron/crypto
git: https://github.com/input-output-hk/cardano-ledger
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
- completed:
subdir: eras/byron/crypto/test
name: cardano-crypto-test
version: 1.3.0
git: https://github.com/input-output-hk/cardano-ledger
pantry-tree:
size: 2364
sha256: e52d4ffd1a27ba1569fd29eb9fe2c8a6c0a3e0e137f1c9840e527f3421964cf4
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
original:
subdir: eras/byron/crypto/test
git: https://github.com/input-output-hk/cardano-ledger
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
- completed:
subdir: eras/byron/ledger/executable-spec
name: byron-spec-ledger
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-ledger
pantry-tree:
size: 4980
sha256: 4a2e6fd74f76af7fbdb83f39a79181c99b2706614bf76c34581f5b86381b49f6
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
original:
subdir: eras/byron/ledger/executable-spec
git: https://github.com/input-output-hk/cardano-ledger
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
- completed:
subdir: eras/byron/ledger/impl
name: cardano-ledger-byron
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-ledger
pantry-tree:
size: 19749
sha256: b15c1c0e69a020590e5400ac13a7929118e147df86f5d676ff33ac198249ea32
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
original:
subdir: eras/byron/ledger/impl
git: https://github.com/input-output-hk/cardano-ledger
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
- completed:
subdir: eras/byron/ledger/impl/test
name: cardano-ledger-byron-test
version: 1.3.0
git: https://github.com/input-output-hk/cardano-ledger
pantry-tree:
size: 11507
sha256: ce7fde49a944fbd337ed29a5eb0476c19156d276117250eef13bd77c26bc12bb
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
original:
subdir: eras/byron/ledger/impl/test
git: https://github.com/input-output-hk/cardano-ledger
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
- completed:
subdir: eras/shelley/impl
name: cardano-ledger-shelley
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-ledger
pantry-tree:
size: 4485
sha256: 5b0d13da3fddea2e69bedf6c7f034b0e3cc542030010376355c1f2460eed48a1
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
original:
subdir: eras/shelley/impl
git: https://github.com/input-output-hk/cardano-ledger
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
- completed:
subdir: eras/shelley/test-suite
name: cardano-ledger-shelley-test
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-ledger
pantry-tree:
size: 7564
sha256: 185b51f8f7c166d7341f195a0d2641ece80b574f8aeb583522727336d2f73302
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
original:
subdir: eras/shelley/test-suite
git: https://github.com/input-output-hk/cardano-ledger
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
- completed:
subdir: eras/shelley-ma/impl
name: cardano-ledger-shelley-ma
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-ledger
pantry-tree:
size: 1116
sha256: 1c8aba63dfc8ac82f1cdf57aa225caa7b9672522bb276d3b62213080fb13791e
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
original:
subdir: eras/shelley-ma/impl
git: https://github.com/input-output-hk/cardano-ledger
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
- completed:
subdir: eras/shelley-ma/test-suite
name: cardano-ledger-shelley-ma-test
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-ledger
pantry-tree:
size: 2397
sha256: a4f96afeec169712476affba5b45209f35bd7e54e2a165efd7bf0cc01ed0188a
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
original:
subdir: eras/shelley-ma/test-suite
git: https://github.com/input-output-hk/cardano-ledger
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
- completed:
subdir: libs/cardano-data
name: cardano-data
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-ledger
pantry-tree:
size: 1115
sha256: 20771f5aa6e322aff65ffe10b4fed0f61819061c64e17dca4b320157b8caaab4
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
original:
subdir: libs/cardano-data
git: https://github.com/input-output-hk/cardano-ledger
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
- completed:
subdir: libs/cardano-ledger-core
name: cardano-ledger-core
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-ledger
pantry-tree:
size: 1691
sha256: a8cc893375bf5fe31b7e54481ba0ce7338c6cc9f391999b42f5d7626ddd2c0d7
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
original:
subdir: libs/cardano-ledger-core
git: https://github.com/input-output-hk/cardano-ledger
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
- completed:
subdir: libs/cardano-ledger-pretty
name: cardano-ledger-pretty
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-ledger
pantry-tree:
size: 513
sha256: 386d264403e5e3fb9fa73d26f1a92711445830501030020fbd4074fca976d1bf
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
original:
subdir: libs/cardano-ledger-pretty
git: https://github.com/input-output-hk/cardano-ledger
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
- completed:
subdir: libs/cardano-protocol-tpraos
name: cardano-protocol-tpraos
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-ledger
pantry-tree:
size: 870
sha256: 64282d0813b439a890c17e0b87f906167af682262b94a86ff8a46e1b909f326e
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
original:
subdir: libs/cardano-protocol-tpraos
git: https://github.com/input-output-hk/cardano-ledger
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
- completed:
subdir: libs/non-integral
name: non-integral
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-ledger
pantry-tree:
size: 1008
sha256: 89dc162eae2c7f5dd0ad897e6f05786cea2e99f437894b8c82ac36619e227cb4
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
original:
subdir: libs/non-integral
git: https://github.com/input-output-hk/cardano-ledger
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
- completed:
subdir: libs/set-algebra
name: set-algebra
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-ledger
pantry-tree:
size: 828
sha256: 1debdb1a795cf347e9d571f4003d5bd3d19da70527d577b5f5f735eee7373505
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
original:
subdir: libs/set-algebra
git: https://github.com/input-output-hk/cardano-ledger
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
- completed:
subdir: libs/small-steps
name: small-steps
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-ledger
pantry-tree:
size: 552
sha256: ea3854ec151c4425a3bebc34dbb1a023074009e26475b7af8bbe4659aef71301
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
original:
subdir: libs/small-steps
git: https://github.com/input-output-hk/cardano-ledger
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
- completed:
subdir: libs/small-steps-test
name: small-steps-test
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-ledger
pantry-tree:
size: 909
sha256: 8b33ad09be07e0e043d42ea94f749a17be303b646e7fdc0139d3b5ff16af647e
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
original:
subdir: libs/small-steps-test
git: https://github.com/input-output-hk/cardano-ledger
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
- completed:
subdir: libs/vector-map
name: vector-map
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-ledger
pantry-tree:
size: 506
sha256: 1ee5278cea3b2bce27957560a41e3d8ad90856714f4e6813a94731b13895bba6
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
original:
subdir: libs/vector-map
git: https://github.com/input-output-hk/cardano-ledger
commit: ce3057e0863304ccb3f79d78c77136219dc786c6
- completed:
subdir: cardano-api
name: cardano-api
version: 1.35.0
git: https://github.com/input-output-hk/cardano-node
pantry-tree:
size: 6382
sha256: 8f718d066bdc1287cda96b9be211fdccc5d9d625588a6476847c950e29dfb656
commit: 9f1d7dc163ee66410d912e48509d6a2300cfa68a
original:
subdir: cardano-api
git: https://github.com/input-output-hk/cardano-node
commit: 9f1d7dc163ee66410d912e48509d6a2300cfa68a
- completed:
subdir: cardano-prelude
name: cardano-prelude
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-prelude
pantry-tree:
size: 1515
sha256: 664e7d50828faf607bf963a207f1fab1fc1e6b53cb91be8f188151ae75221932
commit: bb4ed71ba8e587f672d06edf9d2e376f4b055555
original:
subdir: cardano-prelude
git: https://github.com/input-output-hk/cardano-prelude
commit: bb4ed71ba8e587f672d06edf9d2e376f4b055555
- completed:
subdir: cardano-prelude-test
name: cardano-prelude-test
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-prelude
pantry-tree:
size: 1130
sha256: 939614ced111120ad9c0262bc46b8c25e66cb2204b4d28c3db2e576cbc272d8a
commit: bb4ed71ba8e587f672d06edf9d2e376f4b055555
original:
subdir: cardano-prelude-test
git: https://github.com/input-output-hk/cardano-prelude
commit: bb4ed71ba8e587f672d06edf9d2e376f4b055555
- completed:
name: flat
version: 0.4.5
git: https://github.com/input-output-hk/flat
pantry-tree:
size: 7253
sha256: 87a168685f1ec857e6cc3b003c536da71638d6dea39d550691d611768b1fc101
commit: ee59880f47ab835dbd73bea0847dab7869fc20d8
original:
git: https://github.com/input-output-hk/flat
commit: ee59880f47ab835dbd73bea0847dab7869fc20d8
- completed:
name: goblins
version: 0.2.0.0
git: https://github.com/input-output-hk/goblins
pantry-tree:
size: 928
sha256: 4df5d3e7f5341949af46f1dd6b32642a6058ece469693fdbb14ad7582945ebc9
commit: cde90a2b27f79187ca8310b6549331e59595e7ba
original:
git: https://github.com/input-output-hk/goblins
commit: cde90a2b27f79187ca8310b6549331e59595e7ba
- completed:
name: hedgehog-extras
version: 0.2.0.0
git: https://github.com/input-output-hk/hedgehog-extras
pantry-tree:
size: 2301
sha256: 69b221fb20fdd16f19605be95f61115e5db4a74ff3a672f88a2cec9b4abe1533
commit: 967d79533c21e33387d0227a5f6cc185203fe658
original:
git: https://github.com/input-output-hk/hedgehog-extras
commit: 967d79533c21e33387d0227a5f6cc185203fe658
- completed:
subdir: contra-tracer
name: contra-tracer
version: 0.1.0.0
git: https://github.com/input-output-hk/iohk-monitoring-framework
pantry-tree:
size: 338
sha256: 7902fbc68aba33d6f139d0815a6e71e704a62684bf2bddaca9959e569301f25d
commit: 066f7002aac5a0efc20e49643fea45454f226caa
original:
subdir: contra-tracer
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: 066f7002aac5a0efc20e49643fea45454f226caa
- completed:
subdir: iohk-monitoring
name: iohk-monitoring
version: 0.1.11.0
git: https://github.com/input-output-hk/iohk-monitoring-framework
pantry-tree:
size: 4944
sha256: 62b19e4cc1e534f76cec5d81deb74006ff00d2affb6c7a217e34c5999caa0f57
commit: 066f7002aac5a0efc20e49643fea45454f226caa
original:
subdir: iohk-monitoring
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: 066f7002aac5a0efc20e49643fea45454f226caa
- completed:
subdir: plugins/backend-aggregation
name: lobemo-backend-aggregation
version: 0.1.0.0
git: https://github.com/input-output-hk/iohk-monitoring-framework
pantry-tree:
size: 343
sha256: fe1d61fe24e95753a3824d453143ef4e7a51ccba2331dd1160a58c8b2abedc95
commit: 066f7002aac5a0efc20e49643fea45454f226caa
original:
subdir: plugins/backend-aggregation
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: 066f7002aac5a0efc20e49643fea45454f226caa
- completed:
subdir: plugins/backend-ekg
name: lobemo-backend-ekg
version: 0.1.0.1
git: https://github.com/input-output-hk/iohk-monitoring-framework
pantry-tree:
size: 409
sha256: 2b9478b731d0046575e4325234b91f8125c90b7faef8ab1ee594e84dda2f59a7
commit: 066f7002aac5a0efc20e49643fea45454f226caa
original:
subdir: plugins/backend-ekg
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: 066f7002aac5a0efc20e49643fea45454f226caa
- completed:
subdir: plugins/backend-monitoring
name: lobemo-backend-monitoring
version: 0.1.0.0
git: https://github.com/input-output-hk/iohk-monitoring-framework
pantry-tree:
size: 471
sha256: 91da1a055a6fb446a074f3deeaa65f4318f15bc3247d551f71d035d1efa51784
commit: 066f7002aac5a0efc20e49643fea45454f226caa
original:
subdir: plugins/backend-monitoring
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: 066f7002aac5a0efc20e49643fea45454f226caa
- completed:
subdir: plugins/backend-trace-forwarder
name: lobemo-backend-trace-forwarder
version: 0.1.0.0
git: https://github.com/input-output-hk/iohk-monitoring-framework
pantry-tree:
size: 350
sha256: 0d86c6f715b106f6748a4589762c97f396aaa7b43186aa81f31b4f06ec1a3a51
commit: 066f7002aac5a0efc20e49643fea45454f226caa
original:
subdir: plugins/backend-trace-forwarder
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: 066f7002aac5a0efc20e49643fea45454f226caa
- completed:
subdir: plugins/scribe-systemd
name: lobemo-scribe-systemd
version: 0.1.0.0
git: https://github.com/input-output-hk/iohk-monitoring-framework
pantry-tree:
size: 332
sha256: f0481607ca5a9ea854202ba5a3bc91b85b14617e6d3ae471ae05bfad7cf1aaa1
commit: 066f7002aac5a0efc20e49643fea45454f226caa
original:
subdir: plugins/scribe-systemd
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: 066f7002aac5a0efc20e49643fea45454f226caa
- completed:
subdir: tracer-transformers
name: tracer-transformers
version: 0.1.0.1
git: https://github.com/input-output-hk/iohk-monitoring-framework
pantry-tree:
size: 631
sha256: b774352920631cfe54b8d947a063999a8327d259f95ed0e25671ad8ac90a02d0
commit: 066f7002aac5a0efc20e49643fea45454f226caa
original:
subdir: tracer-transformers
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: 066f7002aac5a0efc20e49643fea45454f226caa
- completed:
subdir: monoidal-synchronisation
name: monoidal-synchronisation
version: 0.1.0.0
git: https://github.com/input-output-hk/ouroboros-network
pantry-tree:
size: 428
sha256: a536fc342bc1ad478679657281ed3822e1a998ada9db84899e0ccfe16901e0c8
commit: a65c29b6a85e90d430c7f58d362b7eb097fd4949
original:
subdir: monoidal-synchronisation
git: https://github.com/input-output-hk/ouroboros-network
commit: a65c29b6a85e90d430c7f58d362b7eb097fd4949
- completed:
subdir: network-mux
name: network-mux
version: 0.1.0.0
git: https://github.com/input-output-hk/ouroboros-network
pantry-tree:
size: 2283
sha256: 62231b55612b5ccc0cde7dbd22a1f4fcdad62cf3be840011eb1991116daa70d7
commit: a65c29b6a85e90d430c7f58d362b7eb097fd4949
original:
subdir: network-mux
git: https://github.com/input-output-hk/ouroboros-network
commit: a65c29b6a85e90d430c7f58d362b7eb097fd4949
- completed:
subdir: ouroboros-consensus
name: ouroboros-consensus
version: 0.1.0.0
git: https://github.com/input-output-hk/ouroboros-network
pantry-tree:
size: 23842
sha256: 7d2b74189d87f5b133baf48eb4435adb35cb6e90c0bf4b67c6e7a292036344f4
commit: a65c29b6a85e90d430c7f58d362b7eb097fd4949
original:
subdir: ouroboros-consensus
git: https://github.com/input-output-hk/ouroboros-network
commit: a65c29b6a85e90d430c7f58d362b7eb097fd4949
- completed:
subdir: ouroboros-consensus-byron
name: ouroboros-consensus-byron
version: 0.1.0.0
git: https://github.com/input-output-hk/ouroboros-network
pantry-tree:
size: 2005
sha256: 0ed335a55033c94792a5a24ef534ae0973947f2337bf18642f70ff538e1a0c5a
commit: a65c29b6a85e90d430c7f58d362b7eb097fd4949
original:
subdir: ouroboros-consensus-byron
git: https://github.com/input-output-hk/ouroboros-network
commit: a65c29b6a85e90d430c7f58d362b7eb097fd4949
- completed:
subdir: ouroboros-consensus-byronspec
name: ouroboros-consensus-byronspec
version: 0.1.0.0
git: https://github.com/input-output-hk/ouroboros-network
pantry-tree:
size: 1219
sha256: a6da8da5df74d1f2d812e2ff4daebbae30b7cc4c8bea0792dafab73ef0c61398
commit: a65c29b6a85e90d430c7f58d362b7eb097fd4949
original:
subdir: ouroboros-consensus-byronspec
git: https://github.com/input-output-hk/ouroboros-network
commit: a65c29b6a85e90d430c7f58d362b7eb097fd4949
- completed:
subdir: ouroboros-consensus-cardano
name: ouroboros-consensus-cardano
version: 0.1.0.0
git: https://github.com/input-output-hk/ouroboros-network
pantry-tree:
size: 1356
sha256: 47e991f7269fad63d69299829b6e5128dec892d312aea31f27e233ff4fa28e3c
commit: a65c29b6a85e90d430c7f58d362b7eb097fd4949
original:
subdir: ouroboros-consensus-cardano
git: https://github.com/input-output-hk/ouroboros-network
commit: a65c29b6a85e90d430c7f58d362b7eb097fd4949
- completed:
subdir: ouroboros-consensus-protocol
name: ouroboros-consensus-protocol
version: 0.1.0.0
git: https://github.com/input-output-hk/ouroboros-network
pantry-tree:
size: 1148
sha256: dc11e4bc6bf313e48e970d88b3d175a4548228a7a3398e2f9099e8e85deb817c
commit: a65c29b6a85e90d430c7f58d362b7eb097fd4949
original:
subdir: ouroboros-consensus-protocol
git: https://github.com/input-output-hk/ouroboros-network
commit: a65c29b6a85e90d430c7f58d362b7eb097fd4949
- completed:
subdir: ouroboros-consensus-shelley
name: ouroboros-consensus-shelley
version: 0.1.0.0
git: https://github.com/input-output-hk/ouroboros-network
pantry-tree:
size: 2495
sha256: 49fd95a96eed5b4504c1b04d184ccb79192fcc18cb8a28893cff92025ba6ca6b
commit: a65c29b6a85e90d430c7f58d362b7eb097fd4949
original:
subdir: ouroboros-consensus-shelley
git: https://github.com/input-output-hk/ouroboros-network
commit: a65c29b6a85e90d430c7f58d362b7eb097fd4949
- completed:
subdir: ouroboros-network
name: ouroboros-network
version: 0.1.0.0
git: https://github.com/input-output-hk/ouroboros-network
pantry-tree:
size: 14166
sha256: 41dbcd9cc587991c34a5d2927611029c34c138855eef4fb3b693041f8f1f19a2
commit: a65c29b6a85e90d430c7f58d362b7eb097fd4949
original:
subdir: ouroboros-network
git: https://github.com/input-output-hk/ouroboros-network
commit: a65c29b6a85e90d430c7f58d362b7eb097fd4949
- completed:
subdir: ouroboros-network-framework
name: ouroboros-network-framework
version: 0.1.0.0
git: https://github.com/input-output-hk/ouroboros-network
pantry-tree:
size: 4893
sha256: 695522f76750a2c2955cfccbb456325b608a6bf833f0b6ebcdd986e8f401b308
commit: a65c29b6a85e90d430c7f58d362b7eb097fd4949
original:
subdir: ouroboros-network-framework
git: https://github.com/input-output-hk/ouroboros-network
commit: a65c29b6a85e90d430c7f58d362b7eb097fd4949
- completed:
subdir: ouroboros-network-testing
name: ouroboros-network-testing
version: 0.1.0.0
git: https://github.com/input-output-hk/ouroboros-network
pantry-tree:
size: 878
sha256: 67372b3b21b764be06245f66dfd4d816d726c6ab2585501bf28b76b30000b5e3
commit: a65c29b6a85e90d430c7f58d362b7eb097fd4949
original:
subdir: ouroboros-network-testing
git: https://github.com/input-output-hk/ouroboros-network
commit: a65c29b6a85e90d430c7f58d362b7eb097fd4949
- completed:
subdir: ouroboros-consensus-test
name: ouroboros-consensus-test
version: 0.1.0.0
git: https://github.com/CardanoSolutions/ouroboros-network
pantry-tree:
size: 8401
sha256: c8805ae1520917e4b096bf92e125d21c73873d65ad148f6671e1d092b6ade7e8
commit: 7744eadda4aa2f2e32749b9abbdee78330d5c175
original:
subdir: ouroboros-consensus-test
git: https://github.com/CardanoSolutions/ouroboros-network
commit: 7744eadda4aa2f2e32749b9abbdee78330d5c175
- completed:
subdir: ouroboros-consensus-byron-test
name: ouroboros-consensus-byron-test
version: 0.1.0.0
git: https://github.com/CardanoSolutions/ouroboros-network
pantry-tree:
size: 5933
sha256: a91aaa71993fff96beab6cfc0c2f5343edf6284d0422bcfe3e95b3b51f655ac6
commit: 7744eadda4aa2f2e32749b9abbdee78330d5c175
original:
subdir: ouroboros-consensus-byron-test
git: https://github.com/CardanoSolutions/ouroboros-network
commit: 7744eadda4aa2f2e32749b9abbdee78330d5c175
- completed:
subdir: ouroboros-consensus-shelley-test
name: ouroboros-consensus-shelley-test
version: 0.1.0.0
git: https://github.com/CardanoSolutions/ouroboros-network
pantry-tree:
size: 15999
sha256: a304323037764489df27a9cf87309c4f43028e5b0d144666607308759151383a
commit: 7744eadda4aa2f2e32749b9abbdee78330d5c175
original:
subdir: ouroboros-consensus-shelley-test
git: https://github.com/CardanoSolutions/ouroboros-network
commit: 7744eadda4aa2f2e32749b9abbdee78330d5c175
- completed:
subdir: ouroboros-consensus-cardano-test
name: ouroboros-consensus-cardano-test
version: 0.1.0.0
git: https://github.com/CardanoSolutions/ouroboros-network
pantry-tree:
size: 171350