forked from seagreen/hjsonpointer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stack.yaml.lock
1239 lines (1238 loc) · 45 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: dom-lt-0.2.3@sha256:89f17bbeb0d23f5a46fe7099b81cc9b4b5df32aadb5080fc171c874aafc802c0,1850
pantry-tree:
size: 442
sha256: 7daf5082515248f0d0d0b7d164d079f970318e26d39f1ffd15519bd22bbe559a
original:
hackage: dom-lt-0.2.3
- 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:1f1cfe496f20e5fe154eea4687012534b77ebb17e8ffe4d48bcc985457333a38,4643
pantry-tree:
size: 2646
sha256: 06728f7bccd1f2a99268d79aad6ee68082fe1cd8d40de1fe2e10c9c5eaf150e5
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:97289baf716f22fdae04b4fcbee066453d2f4c630ef3f631aeeab61ee713841e,2309
pantry-tree:
size: 569
sha256: 55c0b7f60f8350546d437c9c0ad52c1dba35cac727972e7dc0f12201870df62f
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: 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: 631cb6cf1fa01ab346233b610a38b3b4cba6e6ab
original:
subdir: base-deriving-via
git: https://github.com/input-output-hk/cardano-base
commit: 631cb6cf1fa01ab346233b610a38b3b4cba6e6ab
- 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: 631cb6cf1fa01ab346233b610a38b3b4cba6e6ab
original:
subdir: binary
git: https://github.com/input-output-hk/cardano-base
commit: 631cb6cf1fa01ab346233b610a38b3b4cba6e6ab
- 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: 631cb6cf1fa01ab346233b610a38b3b4cba6e6ab
original:
subdir: binary/test
git: https://github.com/input-output-hk/cardano-base
commit: 631cb6cf1fa01ab346233b610a38b3b4cba6e6ab
- 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: 631cb6cf1fa01ab346233b610a38b3b4cba6e6ab
original:
subdir: cardano-crypto-class
git: https://github.com/input-output-hk/cardano-base
commit: 631cb6cf1fa01ab346233b610a38b3b4cba6e6ab
- 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: 3352afcc96d68218a25e0a55e658a245e07d95ab56612d6aaf7b77e6707b398b
commit: 631cb6cf1fa01ab346233b610a38b3b4cba6e6ab
original:
subdir: cardano-crypto-praos
git: https://github.com/input-output-hk/cardano-base
commit: 631cb6cf1fa01ab346233b610a38b3b4cba6e6ab
- 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: fef486dd8189ddc5b065199835a859715bdd54af8e8c15d08f116758bb01ae64
commit: 631cb6cf1fa01ab346233b610a38b3b4cba6e6ab
original:
subdir: cardano-crypto-tests
git: https://github.com/input-output-hk/cardano-base
commit: 631cb6cf1fa01ab346233b610a38b3b4cba6e6ab
- 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: 631cb6cf1fa01ab346233b610a38b3b4cba6e6ab
original:
subdir: measures
git: https://github.com/input-output-hk/cardano-base
commit: 631cb6cf1fa01ab346233b610a38b3b4cba6e6ab
- 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: 631cb6cf1fa01ab346233b610a38b3b4cba6e6ab
original:
subdir: orphans-deriving-via
git: https://github.com/input-output-hk/cardano-base
commit: 631cb6cf1fa01ab346233b610a38b3b4cba6e6ab
- 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: 631cb6cf1fa01ab346233b610a38b3b4cba6e6ab
original:
subdir: slotting
git: https://github.com/input-output-hk/cardano-base
commit: 631cb6cf1fa01ab346233b610a38b3b4cba6e6ab
- 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: 631cb6cf1fa01ab346233b610a38b3b4cba6e6ab
original:
subdir: strict-containers
git: https://github.com/input-output-hk/cardano-base
commit: 631cb6cf1fa01ab346233b610a38b3b4cba6e6ab
- 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: d0c2d9d92a48265e24178bcc4f63f428200f4cf55e99d2dd667e914603792f6a
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
original:
subdir: eras/alonzo/impl
git: https://github.com/input-output-hk/cardano-ledger
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
- 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: 2053
sha256: 8ffd4e1e15eb6f8710bc8a3aec8902e0d264dbfcb1b3863338307f7efe924214
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
original:
subdir: eras/alonzo/test-suite
git: https://github.com/input-output-hk/cardano-ledger
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
- 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: 7483f2b5239444f7b9e2ab5f94eceb4cb5b090a6a758c1b29cfdcf9bb9fd77eb
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
original:
subdir: eras/babbage/impl
git: https://github.com/input-output-hk/cardano-ledger
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
- 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: 789983cd1f6e3bcd5e15f1f580b2167130c76402b110b91726864eb2a05ad7cb
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
original:
subdir: eras/babbage/test-suite
git: https://github.com/input-output-hk/cardano-ledger
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
- 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: c415253fff9a5ce9d7575230fc9098bcfee97653
original:
subdir: eras/byron/chain/executable-spec
git: https://github.com/input-output-hk/cardano-ledger
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
- 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: c415253fff9a5ce9d7575230fc9098bcfee97653
original:
subdir: eras/byron/crypto
git: https://github.com/input-output-hk/cardano-ledger
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
- 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: c415253fff9a5ce9d7575230fc9098bcfee97653
original:
subdir: eras/byron/crypto/test
git: https://github.com/input-output-hk/cardano-ledger
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
- 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: c415253fff9a5ce9d7575230fc9098bcfee97653
original:
subdir: eras/byron/ledger/executable-spec
git: https://github.com/input-output-hk/cardano-ledger
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
- 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: c415253fff9a5ce9d7575230fc9098bcfee97653
original:
subdir: eras/byron/ledger/impl
git: https://github.com/input-output-hk/cardano-ledger
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
- 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: c415253fff9a5ce9d7575230fc9098bcfee97653
original:
subdir: eras/byron/ledger/impl/test
git: https://github.com/input-output-hk/cardano-ledger
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
- 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: e7adb0dedc5f6f4626c152066226364a827d45f994241af0b94cb5e71f6bc0ce
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
original:
subdir: eras/shelley/impl
git: https://github.com/input-output-hk/cardano-ledger
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
- 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: 7565
sha256: da41075bd65b9d97a1aa022f70a991b340b5c1bbe4751a7534bea523879c330b
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
original:
subdir: eras/shelley/test-suite
git: https://github.com/input-output-hk/cardano-ledger
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
- 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: 5b75bcbc27dab28041f8edf15c9df1efde1a69d8f15dc396c83517e333b1cb4f
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
original:
subdir: eras/shelley-ma/impl
git: https://github.com/input-output-hk/cardano-ledger
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
- 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: 83b9a7f2a2b2013391b6bce0c6af8e5b27405bd8ae7d95960e7533e931d2f1ad
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
original:
subdir: eras/shelley-ma/test-suite
git: https://github.com/input-output-hk/cardano-ledger
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
- 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: 8574423e7629bc4fa4d11d3c51981a69bd207eb53e6f8ca599d4c4920e809bac
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
original:
subdir: libs/cardano-data
git: https://github.com/input-output-hk/cardano-ledger
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
- 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: 1690
sha256: c69a5b85b6ec9c4645b95b065724a3ea7fe16d9a4d1a2d713e30768bdf699ef0
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
original:
subdir: libs/cardano-ledger-core
git: https://github.com/input-output-hk/cardano-ledger
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
- 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: 05d29fbaa2114c48070935abe0839468765880f9465acf1588ec47bfc911b662
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
original:
subdir: libs/cardano-ledger-pretty
git: https://github.com/input-output-hk/cardano-ledger
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
- 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: e554ee0221d57716ab870c738afd606b31366350157aa847c2d6ef7406b2ad00
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
original:
subdir: libs/cardano-protocol-tpraos
git: https://github.com/input-output-hk/cardano-ledger
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
- 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: c415253fff9a5ce9d7575230fc9098bcfee97653
original:
subdir: libs/non-integral
git: https://github.com/input-output-hk/cardano-ledger
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
- 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: c415253fff9a5ce9d7575230fc9098bcfee97653
original:
subdir: libs/set-algebra
git: https://github.com/input-output-hk/cardano-ledger
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
- 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: 3aa89124252560df51ef2739463374fd93691fe4083f8a6ccdb83ba8f18075de
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
original:
subdir: libs/small-steps
git: https://github.com/input-output-hk/cardano-ledger
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
- 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: 67f2d47f0b476fb04d981883072742ef26b2969a72434eefcbe83146c0ce25e0
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
original:
subdir: libs/small-steps-test
git: https://github.com/input-output-hk/cardano-ledger
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
- 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: c415253fff9a5ce9d7575230fc9098bcfee97653
original:
subdir: libs/vector-map
git: https://github.com/input-output-hk/cardano-ledger
commit: c415253fff9a5ce9d7575230fc9098bcfee97653
- completed:
subdir: cardano-api
name: cardano-api
version: 1.33.0
git: https://github.com/input-output-hk/cardano-node
pantry-tree:
size: 6240
sha256: bb0f1b58faca23ca40277e34bcc7333573e84f22883a3f30ed10e524a63d4d22
commit: 82067b797c3f53a9d8adb982622ac58f9d675d24
original:
subdir: cardano-api
git: https://github.com/input-output-hk/cardano-node
commit: 82067b797c3f53a9d8adb982622ac58f9d675d24
- 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: eb7854d1337637b8672af1227b276aa33a658f47
original:
subdir: contra-tracer
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: eb7854d1337637b8672af1227b276aa33a658f47
- 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: eb7854d1337637b8672af1227b276aa33a658f47
original:
subdir: iohk-monitoring
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: eb7854d1337637b8672af1227b276aa33a658f47
- 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: eb7854d1337637b8672af1227b276aa33a658f47
original:
subdir: plugins/backend-aggregation
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: eb7854d1337637b8672af1227b276aa33a658f47
- 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: eb7854d1337637b8672af1227b276aa33a658f47
original:
subdir: plugins/backend-ekg
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: eb7854d1337637b8672af1227b276aa33a658f47
- 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: eb7854d1337637b8672af1227b276aa33a658f47
original:
subdir: plugins/backend-monitoring
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: eb7854d1337637b8672af1227b276aa33a658f47
- 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: eb7854d1337637b8672af1227b276aa33a658f47
original:
subdir: plugins/backend-trace-forwarder
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: eb7854d1337637b8672af1227b276aa33a658f47
- 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: eb7854d1337637b8672af1227b276aa33a658f47
original:
subdir: plugins/scribe-systemd
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: eb7854d1337637b8672af1227b276aa33a658f47
- 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: eb7854d1337637b8672af1227b276aa33a658f47
original:
subdir: tracer-transformers
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: eb7854d1337637b8672af1227b276aa33a658f47
- 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: ea202b7b21983140d1944ccfde8750b891b59699
original:
subdir: monoidal-synchronisation
git: https://github.com/input-output-hk/ouroboros-network
commit: ea202b7b21983140d1944ccfde8750b891b59699
- 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: ea202b7b21983140d1944ccfde8750b891b59699
original:
subdir: network-mux
git: https://github.com/input-output-hk/ouroboros-network
commit: ea202b7b21983140d1944ccfde8750b891b59699
- 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: cb04aaac38064831b8577056f5668d737e5624c1aae22f68ecc26e9a52da8872
commit: ea202b7b21983140d1944ccfde8750b891b59699
original:
subdir: ouroboros-consensus
git: https://github.com/input-output-hk/ouroboros-network
commit: ea202b7b21983140d1944ccfde8750b891b59699
- completed:
subdir: ouroboros-consensus-test
name: ouroboros-consensus-test
version: 0.1.0.0
git: https://github.com/input-output-hk/ouroboros-network
pantry-tree:
size: 8105
sha256: 87aaa1765ea4a169e53e588c1ff9af33cc4c436e00a5aa721278fcec429c900a
commit: ea202b7b21983140d1944ccfde8750b891b59699
original:
subdir: ouroboros-consensus-test
git: https://github.com/input-output-hk/ouroboros-network
commit: ea202b7b21983140d1944ccfde8750b891b59699
- 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: ea202b7b21983140d1944ccfde8750b891b59699
original:
subdir: ouroboros-consensus-byron
git: https://github.com/input-output-hk/ouroboros-network
commit: ea202b7b21983140d1944ccfde8750b891b59699
- 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: ea202b7b21983140d1944ccfde8750b891b59699
original:
subdir: ouroboros-consensus-byronspec
git: https://github.com/input-output-hk/ouroboros-network
commit: ea202b7b21983140d1944ccfde8750b891b59699
- completed:
subdir: ouroboros-consensus-byron-test
name: ouroboros-consensus-byron-test
version: 0.1.0.0
git: https://github.com/input-output-hk/ouroboros-network
pantry-tree:
size: 3907
sha256: 3c159c0a4c96bf058c2042e6a799d0f676dd727ae9da6ea52e63723857d6a92f
commit: ea202b7b21983140d1944ccfde8750b891b59699
original:
subdir: ouroboros-consensus-byron-test
git: https://github.com/input-output-hk/ouroboros-network
commit: ea202b7b21983140d1944ccfde8750b891b59699
- 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: 1429
sha256: aeda1b842038acdfca5a951e688fb8b0a4fe8427712b4ae7ccb8ffc3e736691e
commit: ea202b7b21983140d1944ccfde8750b891b59699
original:
subdir: ouroboros-consensus-cardano
git: https://github.com/input-output-hk/ouroboros-network
commit: ea202b7b21983140d1944ccfde8750b891b59699
- 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: c7cf5b8daee79c8bfd1aa7a377ef7466381f249d3a05bcefd2f7d0c138cdda84
commit: ea202b7b21983140d1944ccfde8750b891b59699
original:
subdir: ouroboros-consensus-protocol
git: https://github.com/input-output-hk/ouroboros-network
commit: ea202b7b21983140d1944ccfde8750b891b59699
- 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: bf0a6a7be3d010ed787290006d6c266b34c18d45dbe63a3c8ba6a5690ce6a5d3
commit: ea202b7b21983140d1944ccfde8750b891b59699
original:
subdir: ouroboros-consensus-shelley
git: https://github.com/input-output-hk/ouroboros-network
commit: ea202b7b21983140d1944ccfde8750b891b59699
- completed:
subdir: ouroboros-consensus-shelley-test
name: ouroboros-consensus-shelley-test
version: 0.1.0.0
git: https://github.com/input-output-hk/ouroboros-network
pantry-tree:
size: 11555
sha256: 446cb90d6986ee734c2ffb96f3fd86ad7520ae04893bd9d6524cc534b46a659c
commit: ea202b7b21983140d1944ccfde8750b891b59699
original:
subdir: ouroboros-consensus-shelley-test
git: https://github.com/input-output-hk/ouroboros-network
commit: ea202b7b21983140d1944ccfde8750b891b59699
- completed:
subdir: ouroboros-consensus-cardano-test
name: ouroboros-consensus-cardano-test
version: 0.1.0.0
git: https://github.com/input-output-hk/ouroboros-network
pantry-tree:
size: 171350
sha256: d0f79e5c4b3f9c1bb7b66fd97ceb3af65c95adcc437bad9c62d6b52e7fbbaf46
commit: ea202b7b21983140d1944ccfde8750b891b59699
original:
subdir: ouroboros-consensus-cardano-test
git: https://github.com/input-output-hk/ouroboros-network
commit: ea202b7b21983140d1944ccfde8750b891b59699
- 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: b3352bc44118180cf5ac20779b4f3e0d582fa41659ce6cbac58dabf01f6ea462
commit: ea202b7b21983140d1944ccfde8750b891b59699
original:
subdir: ouroboros-network
git: https://github.com/input-output-hk/ouroboros-network
commit: ea202b7b21983140d1944ccfde8750b891b59699
- 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: ea202b7b21983140d1944ccfde8750b891b59699
original:
subdir: ouroboros-network-framework
git: https://github.com/input-output-hk/ouroboros-network
commit: ea202b7b21983140d1944ccfde8750b891b59699
- 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: 1f33db39582ea7ffd8d701efdd7e781163d7cb1172f997914b7f8638c03010f0
commit: ea202b7b21983140d1944ccfde8750b891b59699
original:
subdir: ouroboros-network-testing
git: https://github.com/input-output-hk/ouroboros-network
commit: ea202b7b21983140d1944ccfde8750b891b59699
- completed:
subdir: plutus-core
name: plutus-core
version: 1.0.0.0
git: https://github.com/CardanoSolutions/plutus
pantry-tree:
size: 83963
sha256: 7150a62eb7075bf879af918f9c7749435f3f80fa5f555ed680932d6e7092dc30
commit: 5f5de28063920788f2dac9bafae1d42aec63d9b3
original:
subdir: plutus-core
git: https://github.com/CardanoSolutions/plutus
commit: 5f5de28063920788f2dac9bafae1d42aec63d9b3
- completed:
subdir: plutus-core-testlib