-
Notifications
You must be signed in to change notification settings - Fork 8
/
stack.yaml.lock
1294 lines (1293 loc) · 46.8 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:
subdir: alonzo/impl
name: cardano-ledger-alonzo
version: 0.1.0.0
git: https://github.com/raduom/cardano-ledger-specs
pantry-tree:
size: 1726
sha256: 5f57b24d2d134052da3e20f1a95d334b135010ccb1a3a933187d285350c3e39c
commit: ef6bb99782d61316da55470620c7da994cc352b2
original:
subdir: alonzo/impl
git: https://github.com/raduom/cardano-ledger-specs
commit: ef6bb99782d61316da55470620c7da994cc352b2
- completed:
subdir: byron/chain/executable-spec
name: byron-spec-chain
version: 0.1.0.0
git: https://github.com/raduom/cardano-ledger-specs
pantry-tree:
size: 1030
sha256: 2eedaef77718c520534fcae7f565ebac1e690f158b72fdc4dd111aec631eb9f4
commit: ef6bb99782d61316da55470620c7da994cc352b2
original:
subdir: byron/chain/executable-spec
git: https://github.com/raduom/cardano-ledger-specs
commit: ef6bb99782d61316da55470620c7da994cc352b2
- completed:
subdir: byron/crypto
name: cardano-crypto-wrapper
version: 1.3.0
git: https://github.com/raduom/cardano-ledger-specs
pantry-tree:
size: 4430
sha256: 2e847b142308d4ab27468972c719cc51df438bfcf5f899523fe40482a139be50
commit: ef6bb99782d61316da55470620c7da994cc352b2
original:
subdir: byron/crypto
git: https://github.com/raduom/cardano-ledger-specs
commit: ef6bb99782d61316da55470620c7da994cc352b2
- completed:
subdir: byron/crypto/test
name: cardano-crypto-test
version: 1.3.0
git: https://github.com/raduom/cardano-ledger-specs
pantry-tree:
size: 2364
sha256: e8118377997222ecae9cefa0b361cd643270d41d6fca580a34e400a5e0828cae
commit: ef6bb99782d61316da55470620c7da994cc352b2
original:
subdir: byron/crypto/test
git: https://github.com/raduom/cardano-ledger-specs
commit: ef6bb99782d61316da55470620c7da994cc352b2
- completed:
subdir: byron/ledger/executable-spec
name: byron-spec-ledger
version: 0.1.0.0
git: https://github.com/raduom/cardano-ledger-specs
pantry-tree:
size: 4981
sha256: e0e79a6b3ac733742538709d9fe5bc45f7ec8150e9a56dcd36157f4affc62bb7
commit: ef6bb99782d61316da55470620c7da994cc352b2
original:
subdir: byron/ledger/executable-spec
git: https://github.com/raduom/cardano-ledger-specs
commit: ef6bb99782d61316da55470620c7da994cc352b2
- completed:
subdir: byron/ledger/impl
name: cardano-ledger-byron
version: 0.1.0.0
git: https://github.com/raduom/cardano-ledger-specs
pantry-tree:
size: 19665
sha256: b67dce275ce3bc1b0ab4ccbaf760206cde3b3fbb70afc88d31f64a0dbfdfea67
commit: ef6bb99782d61316da55470620c7da994cc352b2
original:
subdir: byron/ledger/impl
git: https://github.com/raduom/cardano-ledger-specs
commit: ef6bb99782d61316da55470620c7da994cc352b2
- completed:
subdir: byron/ledger/impl/test
name: cardano-ledger-byron-test
version: 1.3.0
git: https://github.com/raduom/cardano-ledger-specs
pantry-tree:
size: 11428
sha256: f9711f3d0187c25e7c62dbf4f6d75991686dd9f0fc2fcd2746ea93a8eba2da7f
commit: ef6bb99782d61316da55470620c7da994cc352b2
original:
subdir: byron/ledger/impl/test
git: https://github.com/raduom/cardano-ledger-specs
commit: ef6bb99782d61316da55470620c7da994cc352b2
- completed:
subdir: cardano-ledger-core
name: cardano-ledger-core
version: 0.1.0.0
git: https://github.com/raduom/cardano-ledger-specs
pantry-tree:
size: 1258
sha256: b8348020b74de0aceb05578792d4322b98ad0f7e5eb6216387a175a15e2c1423
commit: ef6bb99782d61316da55470620c7da994cc352b2
original:
subdir: cardano-ledger-core
git: https://github.com/raduom/cardano-ledger-specs
commit: ef6bb99782d61316da55470620c7da994cc352b2
- completed:
subdir: cardano-protocol-tpraos
name: cardano-protocol-tpraos
version: 0.1.0.0
git: https://github.com/raduom/cardano-ledger-specs
pantry-tree:
size: 782
sha256: 6a0a7d8069416157e74508259eff71e8d00849738ee13afe1bcc7e7eff2591a1
commit: ef6bb99782d61316da55470620c7da994cc352b2
original:
subdir: cardano-protocol-tpraos
git: https://github.com/raduom/cardano-ledger-specs
commit: ef6bb99782d61316da55470620c7da994cc352b2
- completed:
subdir: semantics/executable-spec
name: small-steps
version: 0.1.0.0
git: https://github.com/raduom/cardano-ledger-specs
pantry-tree:
size: 1136
sha256: 3bf70950373aa17862fd9b6375e93ff41f76c663d55097c2bd116294f90ca7c8
commit: ef6bb99782d61316da55470620c7da994cc352b2
original:
subdir: semantics/executable-spec
git: https://github.com/raduom/cardano-ledger-specs
commit: ef6bb99782d61316da55470620c7da994cc352b2
- completed:
subdir: semantics/small-steps-test
name: small-steps-test
version: 0.1.0.0
git: https://github.com/raduom/cardano-ledger-specs
pantry-tree:
size: 910
sha256: 4bcdcb559a97c606cc3f8ac2ac87985ac3231f4bc84c017a0ae45e832d7a8e60
commit: ef6bb99782d61316da55470620c7da994cc352b2
original:
subdir: semantics/small-steps-test
git: https://github.com/raduom/cardano-ledger-specs
commit: ef6bb99782d61316da55470620c7da994cc352b2
- completed:
subdir: shelley/chain-and-ledger/dependencies/non-integer
name: shelley-spec-non-integral
version: 0.1.0.0
git: https://github.com/raduom/cardano-ledger-specs
pantry-tree:
size: 1892
sha256: 099d6bad5bb083afaf30c3561fcdb9e8e301421eac161b917174f89b4104f26c
commit: ef6bb99782d61316da55470620c7da994cc352b2
original:
subdir: shelley/chain-and-ledger/dependencies/non-integer
git: https://github.com/raduom/cardano-ledger-specs
commit: ef6bb99782d61316da55470620c7da994cc352b2
- completed:
subdir: shelley/chain-and-ledger/executable-spec
name: shelley-spec-ledger
version: 0.1.0.0
git: https://github.com/raduom/cardano-ledger-specs
pantry-tree:
size: 5290
sha256: fef85e7bbc112ad6df38ba7e5b66353b52c96be358e33e3b610a1f8dc8c96bd8
commit: ef6bb99782d61316da55470620c7da994cc352b2
original:
subdir: shelley/chain-and-ledger/executable-spec
git: https://github.com/raduom/cardano-ledger-specs
commit: ef6bb99782d61316da55470620c7da994cc352b2
- completed:
subdir: shelley/chain-and-ledger/shelley-spec-ledger-test
name: shelley-spec-ledger-test
version: 0.1.0.0
git: https://github.com/raduom/cardano-ledger-specs
pantry-tree:
size: 7203
sha256: 67bf568fb543f349cacfbd413ef9f82991b9b3626d9e72279ddb89b542aa8150
commit: ef6bb99782d61316da55470620c7da994cc352b2
original:
subdir: shelley/chain-and-ledger/shelley-spec-ledger-test
git: https://github.com/raduom/cardano-ledger-specs
commit: ef6bb99782d61316da55470620c7da994cc352b2
- completed:
subdir: shelley-ma/impl
name: cardano-ledger-shelley-ma
version: 0.1.0.0
git: https://github.com/raduom/cardano-ledger-specs
pantry-tree:
size: 1117
sha256: 707f62674bb0299c1b1550a8cf5342c02e75035af505d67573bf33bbf22689c6
commit: ef6bb99782d61316da55470620c7da994cc352b2
original:
subdir: shelley-ma/impl
git: https://github.com/raduom/cardano-ledger-specs
commit: ef6bb99782d61316da55470620c7da994cc352b2
- completed:
subdir: cardano-api
name: cardano-api
version: 1.30.0
git: https://github.com/input-output-hk/cardano-node.git
pantry-tree:
size: 6304
sha256: bbf437f196de269ccb8a7201757da04589417a1a39f4fd9df27346c79ae3067c
commit: ed7fdbf65f40f8e194850b87dd8c631fe26154e6
original:
subdir: cardano-api
git: https://github.com/input-output-hk/cardano-node.git
commit: ed7fdbf65f40f8e194850b87dd8c631fe26154e6
- completed:
subdir: cardano-cli
name: cardano-cli
version: 1.30.0
git: https://github.com/input-output-hk/cardano-node.git
pantry-tree:
size: 15609
sha256: 27d3d3eaf97b7c38db3b595a5668c7ba37415f653fdeb1b926d9c7c3c9c1fbbb
commit: ed7fdbf65f40f8e194850b87dd8c631fe26154e6
original:
subdir: cardano-cli
git: https://github.com/input-output-hk/cardano-node.git
commit: ed7fdbf65f40f8e194850b87dd8c631fe26154e6
- completed:
subdir: cardano-config
name: cardano-config
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-node.git
pantry-tree:
size: 398
sha256: b2e5e74f5b7be671560c7271d4252e286a5a44c94654252bae44f0f3efcd7add
commit: ed7fdbf65f40f8e194850b87dd8c631fe26154e6
original:
subdir: cardano-config
git: https://github.com/input-output-hk/cardano-node.git
commit: ed7fdbf65f40f8e194850b87dd8c631fe26154e6
- completed:
subdir: cardano-node
name: cardano-node
version: 1.30.0
git: https://github.com/input-output-hk/cardano-node.git
pantry-tree:
size: 3109
sha256: 691e42a24267ee58cfd4cef919e6f5230df631ea1ed99d937d1ee5ca9ad0a340
commit: ed7fdbf65f40f8e194850b87dd8c631fe26154e6
original:
subdir: cardano-node
git: https://github.com/input-output-hk/cardano-node.git
commit: ed7fdbf65f40f8e194850b87dd8c631fe26154e6
- completed:
subdir: freer-extras
name: freer-extras
version: 0.1.0.0
git: https://github.com/input-output-hk/plutus-apps
pantry-tree:
size: 985
sha256: 9680b51a24cca3fbd11b9d7056c05ed7d80222882f90eb782a82f891cf898af9
commit: 59198a573cf41a46ce3886235ea71b36d7eae464
original:
subdir: freer-extras
git: https://github.com/input-output-hk/plutus-apps
commit: 59198a573cf41a46ce3886235ea71b36d7eae464
- completed:
subdir: playground-common
name: playground-common
version: 0.1.0.0
git: https://github.com/input-output-hk/plutus-apps
pantry-tree:
size: 1881
sha256: 5d26e8f5c5daa429cd1c4a8993b7e7a8e423fedaad4b5e3b45b1c29b405729c1
commit: 59198a573cf41a46ce3886235ea71b36d7eae464
original:
subdir: playground-common
git: https://github.com/input-output-hk/plutus-apps
commit: 59198a573cf41a46ce3886235ea71b36d7eae464
- completed:
subdir: plutus-chain-index
name: plutus-chain-index
version: 0.1.0.0
git: https://github.com/input-output-hk/plutus-apps
pantry-tree:
size: 2678
sha256: c32644cdf20454a42a7c85c4f3eafd3a8a2f20868daa9ee4fb8773411130c5ed
commit: 59198a573cf41a46ce3886235ea71b36d7eae464
original:
subdir: plutus-chain-index
git: https://github.com/input-output-hk/plutus-apps
commit: 59198a573cf41a46ce3886235ea71b36d7eae464
- completed:
subdir: plutus-contract
name: plutus-contract
version: 0.1.0.0
git: https://github.com/input-output-hk/plutus-apps
pantry-tree:
size: 5266
sha256: 67d9704812e3c896a3f7dc9c1e3e9b5c9b90d11048103e42b7be3016e1af3f70
commit: 59198a573cf41a46ce3886235ea71b36d7eae464
original:
subdir: plutus-contract
git: https://github.com/input-output-hk/plutus-apps
commit: 59198a573cf41a46ce3886235ea71b36d7eae464
- completed:
subdir: plutus-ledger
name: plutus-ledger
version: 0.1.0.0
git: https://github.com/input-output-hk/plutus-apps
pantry-tree:
size: 2309
sha256: 43937ee655b55159f88b861b1392d936972e401ade5678771f109c90fcbe9b1b
commit: 59198a573cf41a46ce3886235ea71b36d7eae464
original:
subdir: plutus-ledger
git: https://github.com/input-output-hk/plutus-apps
commit: 59198a573cf41a46ce3886235ea71b36d7eae464
- completed:
subdir: plutus-pab
name: plutus-pab
version: 0.1.0.0
git: https://github.com/input-output-hk/plutus-apps
pantry-tree:
size: 11931
sha256: 6b528968e60d59e9a4dc9a44c79bb46a8148bfabe63d1f97dd593b6052cb7a73
commit: 59198a573cf41a46ce3886235ea71b36d7eae464
original:
subdir: plutus-pab
git: https://github.com/input-output-hk/plutus-apps
commit: 59198a573cf41a46ce3886235ea71b36d7eae464
- completed:
subdir: plutus-playground-server
name: plutus-playground-server
version: 0.1.0.0
git: https://github.com/input-output-hk/plutus-apps
pantry-tree:
size: 2007
sha256: ef5a262191b0be8f1e54e3bcd989ff08484542413165b6b88382db1f4f27d78b
commit: 59198a573cf41a46ce3886235ea71b36d7eae464
original:
subdir: plutus-playground-server
git: https://github.com/input-output-hk/plutus-apps
commit: 59198a573cf41a46ce3886235ea71b36d7eae464
- completed:
subdir: plutus-use-cases
name: plutus-use-cases
version: 0.1.0.0
git: https://github.com/input-output-hk/plutus-apps
pantry-tree:
size: 4988
sha256: a5fca26100707c9271f0897186fd23738aa099c7bcfdc128c41304d42ed0b7d8
commit: 59198a573cf41a46ce3886235ea71b36d7eae464
original:
subdir: plutus-use-cases
git: https://github.com/input-output-hk/plutus-apps
commit: 59198a573cf41a46ce3886235ea71b36d7eae464
- completed:
subdir: quickcheck-dynamic
name: quickcheck-dynamic
version: 0.1.0.0
git: https://github.com/input-output-hk/plutus-apps
pantry-tree:
size: 820
sha256: e43e789f296e2997b8266fb2308db6b065198bda1d96e13aab937d1525b446c9
commit: 59198a573cf41a46ce3886235ea71b36d7eae464
original:
subdir: quickcheck-dynamic
git: https://github.com/input-output-hk/plutus-apps
commit: 59198a573cf41a46ce3886235ea71b36d7eae464
- completed:
subdir: web-ghc
name: web-ghc
version: 0.1.0.0
git: https://github.com/input-output-hk/plutus-apps
pantry-tree:
size: 589
sha256: 6db67d3e8a49bc21b2aa9d80c47d2bf8560ece43f1ed6dd79728b0d28a6d2557
commit: 59198a573cf41a46ce3886235ea71b36d7eae464
original:
subdir: web-ghc
git: https://github.com/input-output-hk/plutus-apps
commit: 59198a573cf41a46ce3886235ea71b36d7eae464
- completed:
subdir: plutus-benchmark
name: plutus-benchmark
version: 0.1.0.0
git: https://github.com/input-output-hk/plutus
pantry-tree:
size: 9173
sha256: 13c22f54ee9d453e3a981e2951403217c67237de7b51f95a3ef37ff2807a7d12
commit: f3b65ee7d98cf2257df6d2574cd12d8902a6b12a
original:
subdir: plutus-benchmark
git: https://github.com/input-output-hk/plutus
commit: f3b65ee7d98cf2257df6d2574cd12d8902a6b12a
- completed:
subdir: plutus-core
name: plutus-core
version: 0.1.0.0
git: https://github.com/input-output-hk/plutus
pantry-tree:
size: 76769
sha256: 461d8375bf4a87fb513ad1b5406c5103fbe0642e670a147e9204eccc94bb4fd6
commit: f3b65ee7d98cf2257df6d2574cd12d8902a6b12a
original:
subdir: plutus-core
git: https://github.com/input-output-hk/plutus
commit: f3b65ee7d98cf2257df6d2574cd12d8902a6b12a
- completed:
subdir: plutus-errors
name: plutus-errors
version: 0.1.0.0
git: https://github.com/input-output-hk/plutus
pantry-tree:
size: 642
sha256: e9f66d74801a8a0f33be4f3405be83d360cff9a65c1b65e930df2245532e7b35
commit: f3b65ee7d98cf2257df6d2574cd12d8902a6b12a
original:
subdir: plutus-errors
git: https://github.com/input-output-hk/plutus
commit: f3b65ee7d98cf2257df6d2574cd12d8902a6b12a
- completed:
subdir: plutus-ledger-api
name: plutus-ledger-api
version: 0.1.0.0
git: https://github.com/input-output-hk/plutus
pantry-tree:
size: 1888
sha256: f11160b733d3bde066ad9c0f589f06850e381e4890aa0cfe097094c111f5e78c
commit: f3b65ee7d98cf2257df6d2574cd12d8902a6b12a
original:
subdir: plutus-ledger-api
git: https://github.com/input-output-hk/plutus
commit: f3b65ee7d98cf2257df6d2574cd12d8902a6b12a
- completed:
subdir: plutus-metatheory
name: plutus-metatheory
version: 0.1.0.0
git: https://github.com/input-output-hk/plutus
pantry-tree:
size: 5222
sha256: 4766347e5bc8d556291b0734e9768257f452e366d395c3e588ceb7b9082ab376
commit: f3b65ee7d98cf2257df6d2574cd12d8902a6b12a
original:
subdir: plutus-metatheory
git: https://github.com/input-output-hk/plutus
commit: f3b65ee7d98cf2257df6d2574cd12d8902a6b12a
- completed:
subdir: plutus-tx-plugin
name: plutus-tx-plugin
version: 0.1.0.0
git: https://github.com/input-output-hk/plutus
pantry-tree:
size: 19244
sha256: 1d91f4021a6a64c923044b4af44849ec30896171244f72ca8be518e8c1dff3b3
commit: f3b65ee7d98cf2257df6d2574cd12d8902a6b12a
original:
subdir: plutus-tx-plugin
git: https://github.com/input-output-hk/plutus
commit: f3b65ee7d98cf2257df6d2574cd12d8902a6b12a
- completed:
subdir: plutus-tx
name: plutus-tx
version: 0.1.0.0
git: https://github.com/input-output-hk/plutus
pantry-tree:
size: 3019
sha256: 1917dadffe562bdbf1bd299088d6f184ec8e22c7de89ae53d9c2162564d5aae1
commit: f3b65ee7d98cf2257df6d2574cd12d8902a6b12a
original:
subdir: plutus-tx
git: https://github.com/input-output-hk/plutus
commit: f3b65ee7d98cf2257df6d2574cd12d8902a6b12a
- completed:
subdir: prettyprinter-configurable
name: prettyprinter-configurable
version: 0.1.0.0
git: https://github.com/input-output-hk/plutus
pantry-tree:
size: 1191
sha256: 9eb538807b44b439f2c23fcb64eddb99fdd18793f935dd9e7567d4019f4aded3
commit: f3b65ee7d98cf2257df6d2574cd12d8902a6b12a
original:
subdir: prettyprinter-configurable
git: https://github.com/input-output-hk/plutus
commit: f3b65ee7d98cf2257df6d2574cd12d8902a6b12a
- completed:
subdir: stubs/plutus-ghc-stub
name: plutus-ghc-stub
version: 8.6.5
git: https://github.com/input-output-hk/plutus
pantry-tree:
size: 1120
sha256: 0af4d1f17aa534d2b11c348fee84a8937662d1adc43f6513dfdb39a8229a9920
commit: f3b65ee7d98cf2257df6d2574cd12d8902a6b12a
original:
subdir: stubs/plutus-ghc-stub
git: https://github.com/input-output-hk/plutus
commit: f3b65ee7d98cf2257df6d2574cd12d8902a6b12a
- completed:
subdir: word-array
name: word-array
version: 0.1.0.0
git: https://github.com/input-output-hk/plutus
pantry-tree:
size: 330
sha256: 628f8e4ff2dc03cc45414910d63241fcab3726ed05ff8bf5e4a6299fd287a310
commit: f3b65ee7d98cf2257df6d2574cd12d8902a6b12a
original:
subdir: word-array
git: https://github.com/input-output-hk/plutus
commit: f3b65ee7d98cf2257df6d2574cd12d8902a6b12a
- completed:
name: servant-purescript
version: 0.9.0.2
git: https://github.com/input-output-hk/servant-purescript.git
pantry-tree:
size: 2583
sha256: 1f5720ee2d839fa1cc6c9257b4bdf8755b06fa93981b2be9e5cf621d610f90ec
commit: a0c7c7e37c95564061247461aef4be505a853538
original:
git: https://github.com/input-output-hk/servant-purescript.git
commit: a0c7c7e37c95564061247461aef4be505a853538
- completed:
name: purescript-bridge
version: 0.13.1.0
git: https://github.com/input-output-hk/purescript-bridge.git
pantry-tree:
size: 1562
sha256: 21ce2905f0748a68a8a51e8bd43d00337e3cdba65f26d914c16f7ddd47d91169
commit: 6a92d7853ea514be8b70bab5e72077bf5a510596
original:
git: https://github.com/input-output-hk/purescript-bridge.git
commit: 6a92d7853ea514be8b70bab5e72077bf5a510596
- completed:
name: cardano-crypto
version: 1.1.0
git: https://github.com/input-output-hk/cardano-crypto.git
pantry-tree:
size: 5300
sha256: 296774bd04b91e2682f09bf222b1bbc503ac595a3564a44b66e1f287d717d045
commit: 07397f0e50da97eaa0575d93bee7ac4b2b2576ec
original:
git: https://github.com/input-output-hk/cardano-crypto.git
commit: 07397f0e50da97eaa0575d93bee7ac4b2b2576ec
- completed:
subdir: lib/text-class
name: text-class
version: 2021.9.29
git: https://github.com/input-output-hk/cardano-wallet
pantry-tree:
size: 319
sha256: 899b870e51fcaf35b84777a9e639aef7d9b33fc51c12c7a62655f860aa753b16
commit: 0c1daac2cb13e45c2241f90fa76267fc5ea7a9a1
original:
subdir: lib/text-class
git: https://github.com/input-output-hk/cardano-wallet
commit: 0c1daac2cb13e45c2241f90fa76267fc5ea7a9a1
- completed:
subdir: lib/strict-non-empty-containers
name: strict-non-empty-containers
version: 2020.12.8
git: https://github.com/input-output-hk/cardano-wallet
pantry-tree:
size: 547
sha256: 11d65c3fd55e208efda97ad726060325bdfb07512c728a3de22634f359d06cac
commit: 0c1daac2cb13e45c2241f90fa76267fc5ea7a9a1
original:
subdir: lib/strict-non-empty-containers
git: https://github.com/input-output-hk/cardano-wallet
commit: 0c1daac2cb13e45c2241f90fa76267fc5ea7a9a1
- completed:
subdir: lib/core
name: cardano-wallet-core
version: 2021.9.29
git: https://github.com/input-output-hk/cardano-wallet
pantry-tree:
size: 30251
sha256: 3a82cb57e5383178a5baaefbd4e2146025da1ed598a2019650a1f496d7fd5640
commit: 0c1daac2cb13e45c2241f90fa76267fc5ea7a9a1
original:
subdir: lib/core
git: https://github.com/input-output-hk/cardano-wallet
commit: 0c1daac2cb13e45c2241f90fa76267fc5ea7a9a1
- completed:
subdir: lib/test-utils
name: cardano-wallet-test-utils
version: 2021.9.29
git: https://github.com/input-output-hk/cardano-wallet
pantry-tree:
size: 1256
sha256: 23f9fce20874e5f0ebac0037eb0a9559b3c43849fae77f2ce65a815ab10bb63a
commit: 0c1daac2cb13e45c2241f90fa76267fc5ea7a9a1
original:
subdir: lib/test-utils
git: https://github.com/input-output-hk/cardano-wallet
commit: 0c1daac2cb13e45c2241f90fa76267fc5ea7a9a1
- completed:
subdir: lib/numeric
name: cardano-numeric
version: 2020.12.8
git: https://github.com/input-output-hk/cardano-wallet
pantry-tree:
size: 268
sha256: 3617d7a544432f2e6e873677557edeb39a40cf9e7c221e4e780ca0f7498581f6
commit: 0c1daac2cb13e45c2241f90fa76267fc5ea7a9a1
original:
subdir: lib/numeric
git: https://github.com/input-output-hk/cardano-wallet
commit: 0c1daac2cb13e45c2241f90fa76267fc5ea7a9a1
- 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: 592aa61d657ad5935a33bace1243abce3728b643
original:
subdir: base-deriving-via
git: https://github.com/input-output-hk/cardano-base
commit: 592aa61d657ad5935a33bace1243abce3728b643
- 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: 592aa61d657ad5935a33bace1243abce3728b643
original:
subdir: binary
git: https://github.com/input-output-hk/cardano-base
commit: 592aa61d657ad5935a33bace1243abce3728b643
- 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: 592aa61d657ad5935a33bace1243abce3728b643
original:
subdir: binary/test
git: https://github.com/input-output-hk/cardano-base
commit: 592aa61d657ad5935a33bace1243abce3728b643
- 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: 3365
sha256: 19e0a254b32402ef67222ad3dd0503ce4ae49206113171256692b88bcb969fad
commit: 592aa61d657ad5935a33bace1243abce3728b643
original:
subdir: cardano-crypto-class
git: https://github.com/input-output-hk/cardano-base
commit: 592aa61d657ad5935a33bace1243abce3728b643
- 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: 1886
sha256: 772e599fd30301b5d477ecb239262deb8c88a3bef607cf520e8a342341c1a5c6
commit: 592aa61d657ad5935a33bace1243abce3728b643
original:
subdir: cardano-crypto-praos
git: https://github.com/input-output-hk/cardano-base
commit: 592aa61d657ad5935a33bace1243abce3728b643
- 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: 68ed26c825026479d7ae223f62b0e86e6cb0ef7e728b69c7ed2cca1e8cc3a84d
commit: 592aa61d657ad5935a33bace1243abce3728b643
original:
subdir: cardano-crypto-tests
git: https://github.com/input-output-hk/cardano-base
commit: 592aa61d657ad5935a33bace1243abce3728b643
- 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: 592aa61d657ad5935a33bace1243abce3728b643
original:
subdir: measures
git: https://github.com/input-output-hk/cardano-base
commit: 592aa61d657ad5935a33bace1243abce3728b643
- 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: 592aa61d657ad5935a33bace1243abce3728b643
original:
subdir: orphans-deriving-via
git: https://github.com/input-output-hk/cardano-base
commit: 592aa61d657ad5935a33bace1243abce3728b643
- completed:
subdir: slotting
name: cardano-slotting
version: 0.1.0.0
git: https://github.com/input-output-hk/cardano-base
pantry-tree:
size: 642
sha256: bb44fa2e71515fdfd6f481648176daffee601b80833c37d02da987cf2e2c3543
commit: 592aa61d657ad5935a33bace1243abce3728b643
original:
subdir: slotting
git: https://github.com/input-output-hk/cardano-base
commit: 592aa61d657ad5935a33bace1243abce3728b643
- 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: 2f7bd8b5e5626ea2986dc929f23ebc565a1e7d8f4cedaf2edf7bfaca70852886
commit: 592aa61d657ad5935a33bace1243abce3728b643
original:
subdir: strict-containers
git: https://github.com/input-output-hk/cardano-base
commit: 592aa61d657ad5935a33bace1243abce3728b643
- completed:
subdir: iohk-monitoring
name: iohk-monitoring
version: 0.2.0.0
git: https://github.com/input-output-hk/iohk-monitoring-framework
pantry-tree:
size: 4944
sha256: 2d3e9e2e30f4b59ddbfaade9b0c7a3ebe14397911ddbb72ab68f2db375a45159
commit: 46f994e216a1f8b36fe4669b47b2a7011b0e153c
original:
subdir: iohk-monitoring
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: 46f994e216a1f8b36fe4669b47b2a7011b0e153c
- 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: 46f994e216a1f8b36fe4669b47b2a7011b0e153c
original:
subdir: tracer-transformers
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: 46f994e216a1f8b36fe4669b47b2a7011b0e153c
- 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: 46f994e216a1f8b36fe4669b47b2a7011b0e153c
original:
subdir: contra-tracer
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: 46f994e216a1f8b36fe4669b47b2a7011b0e153c
- 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: 46f994e216a1f8b36fe4669b47b2a7011b0e153c
original:
subdir: plugins/backend-aggregation
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: 46f994e216a1f8b36fe4669b47b2a7011b0e153c
- 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: 46f994e216a1f8b36fe4669b47b2a7011b0e153c
original:
subdir: plugins/backend-ekg
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: 46f994e216a1f8b36fe4669b47b2a7011b0e153c
- 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: 46f994e216a1f8b36fe4669b47b2a7011b0e153c
original:
subdir: plugins/backend-monitoring
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: 46f994e216a1f8b36fe4669b47b2a7011b0e153c
- 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: 46f994e216a1f8b36fe4669b47b2a7011b0e153c
original:
subdir: plugins/backend-trace-forwarder
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: 46f994e216a1f8b36fe4669b47b2a7011b0e153c
- 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: 46f994e216a1f8b36fe4669b47b2a7011b0e153c
original:
subdir: plugins/scribe-systemd
git: https://github.com/input-output-hk/iohk-monitoring-framework
commit: 46f994e216a1f8b36fe4669b47b2a7011b0e153c
- 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: 5d37a927046bc7da2887830d8e35cf604622ce09
original:
subdir: monoidal-synchronisation
git: https://github.com/input-output-hk/ouroboros-network
commit: 5d37a927046bc7da2887830d8e35cf604622ce09
- completed:
subdir: typed-protocols
name: typed-protocols
version: 0.1.0.0
git: https://github.com/input-output-hk/ouroboros-network
pantry-tree:
size: 536
sha256: b749e51da2d8c2e09ad07cfe4c06eaac8f60c9a50306db010906a0c2e101cf6d
commit: 5d37a927046bc7da2887830d8e35cf604622ce09
original:
subdir: typed-protocols
git: https://github.com/input-output-hk/ouroboros-network
commit: 5d37a927046bc7da2887830d8e35cf604622ce09
- completed:
subdir: typed-protocols-examples
name: typed-protocols-examples
version: 0.1.0.0
git: https://github.com/input-output-hk/ouroboros-network
pantry-tree:
size: 1469
sha256: acaca36b9b8148a68ddf09f2a72b75cd788fdd19004686ad9390877a1ebff127
commit: 5d37a927046bc7da2887830d8e35cf604622ce09
original:
subdir: typed-protocols-examples
git: https://github.com/input-output-hk/ouroboros-network
commit: 5d37a927046bc7da2887830d8e35cf604622ce09
- completed:
subdir: ouroboros-network
name: ouroboros-network
version: 0.1.0.0
git: https://github.com/input-output-hk/ouroboros-network
pantry-tree:
size: 12819
sha256: 04be90e100f4af5c40266e1d8872514b40fe48789938bd381a9dae18a090105a
commit: 5d37a927046bc7da2887830d8e35cf604622ce09
original:
subdir: ouroboros-network
git: https://github.com/input-output-hk/ouroboros-network
commit: 5d37a927046bc7da2887830d8e35cf604622ce09
- 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: 464
sha256: 97b8fd2528409d0e865af47e35106d368fe8542bb1bb8f9167dbcbacbc0d7e20
commit: 5d37a927046bc7da2887830d8e35cf604622ce09
original:
subdir: ouroboros-network-testing
git: https://github.com/input-output-hk/ouroboros-network
commit: 5d37a927046bc7da2887830d8e35cf604622ce09
- 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: 3744
sha256: d447693e16bd0d177a14e35b36e34f72661d2bc040530e27796cd0af805a6565
commit: 5d37a927046bc7da2887830d8e35cf604622ce09
original:
subdir: ouroboros-network-framework
git: https://github.com/input-output-hk/ouroboros-network
commit: 5d37a927046bc7da2887830d8e35cf604622ce09
- completed:
subdir: ouroboros-consensus
name: ouroboros-consensus
version: 0.1.0.0
git: https://github.com/input-output-hk/ouroboros-network
pantry-tree:
size: 23103
sha256: 7a9ede2b1f9a2a0b3421b4b5ce0ab37b93ff0bec01dbac5de3bf1e7a81a93481
commit: 5d37a927046bc7da2887830d8e35cf604622ce09
original:
subdir: ouroboros-consensus
git: https://github.com/input-output-hk/ouroboros-network
commit: 5d37a927046bc7da2887830d8e35cf604622ce09
- 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: 2004
sha256: 9c39b66d1ff8e8e0502700a337cfd0942389d5b98d40d5863c01e73b9f7ccc04
commit: 5d37a927046bc7da2887830d8e35cf604622ce09
original:
subdir: ouroboros-consensus-byron
git: https://github.com/input-output-hk/ouroboros-network
commit: 5d37a927046bc7da2887830d8e35cf604622ce09
- 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: 1351
sha256: ccbc55e6082a5d02d912d82d2c914cca3384640a9c085528f9e5943dcb4f25ab
commit: 5d37a927046bc7da2887830d8e35cf604622ce09
original:
subdir: ouroboros-consensus-cardano
git: https://github.com/input-output-hk/ouroboros-network
commit: 5d37a927046bc7da2887830d8e35cf604622ce09
- 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: 2050
sha256: 2f2f929ec4121d8f3bd4591c0c56bb427c437590ab6c87153e76d1305b39c5ea
commit: 5d37a927046bc7da2887830d8e35cf604622ce09
original:
subdir: ouroboros-consensus-shelley
git: https://github.com/input-output-hk/ouroboros-network
commit: 5d37a927046bc7da2887830d8e35cf604622ce09
- completed:
subdir: io-sim
name: io-sim
version: 0.2.0.0
git: https://github.com/input-output-hk/ouroboros-network
pantry-tree:
size: 565
sha256: 9478189a5ba405f80dd2a29d5caa748bca0f80f376a1e1ae6217afa21eed5550
commit: 5d37a927046bc7da2887830d8e35cf604622ce09
original:
subdir: io-sim
git: https://github.com/input-output-hk/ouroboros-network
commit: 5d37a927046bc7da2887830d8e35cf604622ce09
- completed:
subdir: io-classes
name: io-classes
version: 0.2.0.0
git: https://github.com/input-output-hk/ouroboros-network
pantry-tree:
size: 1151
sha256: f8c69e6b7a33e2f7736cd3752698d8ac2a60132d14cf20014265756f4b092827
commit: 5d37a927046bc7da2887830d8e35cf604622ce09
original:
subdir: io-classes
git: https://github.com/input-output-hk/ouroboros-network