-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathmise.lock
More file actions
1254 lines (1001 loc) · 69.8 KB
/
Copy pathmise.lock
File metadata and controls
1254 lines (1001 loc) · 69.8 KB
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
# @generated - this file is auto-generated by `mise lock` https://mise.en.dev/dev-tools/mise-lock.html
[[tools.actionlint]]
version = "1.7.12"
backend = "aqua:rhysd/actionlint"
[tools.actionlint."platforms.linux-arm64"]
checksum = "sha256:325e971b6ba9bfa504672e29be93c24981eeb1c07576d730e9f7c8805afff0c6"
url = "https://github.com/rhysd/actionlint/releases/download/v1.7.12/actionlint_1.7.12_linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/rhysd/actionlint/releases/assets/384924897"
provenance = "github-attestations"
[tools.actionlint."platforms.linux-arm64-musl"]
checksum = "sha256:325e971b6ba9bfa504672e29be93c24981eeb1c07576d730e9f7c8805afff0c6"
url = "https://github.com/rhysd/actionlint/releases/download/v1.7.12/actionlint_1.7.12_linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/rhysd/actionlint/releases/assets/384924897"
provenance = "github-attestations"
[tools.actionlint."platforms.linux-x64"]
checksum = "sha256:8aca8db96f1b94770f1b0d72b6dddcb1ebb8123cb3712530b08cc387b349a3d8"
url = "https://github.com/rhysd/actionlint/releases/download/v1.7.12/actionlint_1.7.12_linux_amd64.tar.gz"
url_api = "https://api.github.com/repos/rhysd/actionlint/releases/assets/384924896"
provenance = "github-attestations"
[tools.actionlint."platforms.linux-x64-baseline"]
checksum = "sha256:8aca8db96f1b94770f1b0d72b6dddcb1ebb8123cb3712530b08cc387b349a3d8"
url = "https://github.com/rhysd/actionlint/releases/download/v1.7.12/actionlint_1.7.12_linux_amd64.tar.gz"
url_api = "https://api.github.com/repos/rhysd/actionlint/releases/assets/384924896"
provenance = "github-attestations"
[tools.actionlint."platforms.linux-x64-musl"]
checksum = "sha256:8aca8db96f1b94770f1b0d72b6dddcb1ebb8123cb3712530b08cc387b349a3d8"
url = "https://github.com/rhysd/actionlint/releases/download/v1.7.12/actionlint_1.7.12_linux_amd64.tar.gz"
url_api = "https://api.github.com/repos/rhysd/actionlint/releases/assets/384924896"
provenance = "github-attestations"
[tools.actionlint."platforms.linux-x64-musl-baseline"]
checksum = "sha256:8aca8db96f1b94770f1b0d72b6dddcb1ebb8123cb3712530b08cc387b349a3d8"
url = "https://github.com/rhysd/actionlint/releases/download/v1.7.12/actionlint_1.7.12_linux_amd64.tar.gz"
url_api = "https://api.github.com/repos/rhysd/actionlint/releases/assets/384924896"
provenance = "github-attestations"
[tools.actionlint."platforms.macos-arm64"]
checksum = "sha256:aba9ced2dee8d27fecca3dc7feb1a7f9a52caefa1eb46f3271ea66b6e0e6953f"
url = "https://github.com/rhysd/actionlint/releases/download/v1.7.12/actionlint_1.7.12_darwin_arm64.tar.gz"
url_api = "https://api.github.com/repos/rhysd/actionlint/releases/assets/384924893"
provenance = "github-attestations"
[tools.actionlint."platforms.windows-x64"]
checksum = "sha256:6e7241b51e6817ea6a047693d8e6fed13b31819c9a0dd6c5a726e1592d22f6e9"
url = "https://github.com/rhysd/actionlint/releases/download/v1.7.12/actionlint_1.7.12_windows_amd64.zip"
url_api = "https://api.github.com/repos/rhysd/actionlint/releases/assets/384924919"
provenance = "github-attestations"
[tools.actionlint."platforms.windows-x64-baseline"]
checksum = "sha256:6e7241b51e6817ea6a047693d8e6fed13b31819c9a0dd6c5a726e1592d22f6e9"
url = "https://github.com/rhysd/actionlint/releases/download/v1.7.12/actionlint_1.7.12_windows_amd64.zip"
url_api = "https://api.github.com/repos/rhysd/actionlint/releases/assets/384924919"
provenance = "github-attestations"
[[tools.age]]
version = "1.3.1"
backend = "aqua:FiloSottile/age"
[tools.age."platforms.linux-arm64"]
checksum = "sha256:c6878a324421b69e3e20b00ba17c04bc5c6dab0030cfe55bf8f68fa8d9e9093a"
url = "https://github.com/FiloSottile/age/releases/download/v1.3.1/age-v1.3.1-linux-arm64.tar.gz"
url_api = "https://api.github.com/repos/FiloSottile/age/releases/assets/333752668"
provenance = "github-attestations"
[tools.age."platforms.linux-arm64-musl"]
checksum = "sha256:c6878a324421b69e3e20b00ba17c04bc5c6dab0030cfe55bf8f68fa8d9e9093a"
url = "https://github.com/FiloSottile/age/releases/download/v1.3.1/age-v1.3.1-linux-arm64.tar.gz"
url_api = "https://api.github.com/repos/FiloSottile/age/releases/assets/333752668"
provenance = "github-attestations"
[tools.age."platforms.linux-x64"]
checksum = "sha256:bdc69c09cbdd6cf8b1f333d372a1f58247b3a33146406333e30c0f26e8f51377"
url = "https://github.com/FiloSottile/age/releases/download/v1.3.1/age-v1.3.1-linux-amd64.tar.gz"
url_api = "https://api.github.com/repos/FiloSottile/age/releases/assets/333752671"
provenance = "github-attestations"
[tools.age."platforms.linux-x64-baseline"]
checksum = "sha256:bdc69c09cbdd6cf8b1f333d372a1f58247b3a33146406333e30c0f26e8f51377"
url = "https://github.com/FiloSottile/age/releases/download/v1.3.1/age-v1.3.1-linux-amd64.tar.gz"
url_api = "https://api.github.com/repos/FiloSottile/age/releases/assets/333752671"
provenance = "github-attestations"
[tools.age."platforms.linux-x64-musl"]
checksum = "sha256:bdc69c09cbdd6cf8b1f333d372a1f58247b3a33146406333e30c0f26e8f51377"
url = "https://github.com/FiloSottile/age/releases/download/v1.3.1/age-v1.3.1-linux-amd64.tar.gz"
url_api = "https://api.github.com/repos/FiloSottile/age/releases/assets/333752671"
provenance = "github-attestations"
[tools.age."platforms.linux-x64-musl-baseline"]
checksum = "sha256:bdc69c09cbdd6cf8b1f333d372a1f58247b3a33146406333e30c0f26e8f51377"
url = "https://github.com/FiloSottile/age/releases/download/v1.3.1/age-v1.3.1-linux-amd64.tar.gz"
url_api = "https://api.github.com/repos/FiloSottile/age/releases/assets/333752671"
provenance = "github-attestations"
[tools.age."platforms.macos-arm64"]
checksum = "sha256:01120ea2cbf0463d4c6bd767f99f3271bbed1cdc8a9aa718a76ba1fe4f01998b"
url = "https://github.com/FiloSottile/age/releases/download/v1.3.1/age-v1.3.1-darwin-arm64.tar.gz"
url_api = "https://api.github.com/repos/FiloSottile/age/releases/assets/333752669"
provenance = "github-attestations"
[tools.age."platforms.windows-x64"]
checksum = "sha256:c56e8ce22f7e80cb85ad946cc82d198767b056366201d3e1a2b93d865be38154"
url = "https://github.com/FiloSottile/age/releases/download/v1.3.1/age-v1.3.1-windows-amd64.zip"
url_api = "https://api.github.com/repos/FiloSottile/age/releases/assets/333752673"
provenance = "github-attestations"
[tools.age."platforms.windows-x64-baseline"]
checksum = "sha256:c56e8ce22f7e80cb85ad946cc82d198767b056366201d3e1a2b93d865be38154"
url = "https://github.com/FiloSottile/age/releases/download/v1.3.1/age-v1.3.1-windows-amd64.zip"
url_api = "https://api.github.com/repos/FiloSottile/age/releases/assets/333752673"
provenance = "github-attestations"
[[tools.aube]]
version = "1.19.0"
backend = "github:endevco/aube"
[tools.aube."platforms.linux-arm64"]
checksum = "sha256:9e062f319809013c33d4ccb7eba7a36752e8735d08dabe5c8b227d83ae5de102"
url = "https://github.com/jdx/aube/releases/download/v1.19.0/aube-v1.19.0-aarch64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/445129710"
provenance = "github-attestations"
[tools.aube."platforms.linux-arm64-musl"]
checksum = "sha256:e4b0ba7a6992c7a4316c4f901cff599ce1f490e6005707254831d10267618017"
url = "https://github.com/jdx/aube/releases/download/v1.19.0/aube-v1.19.0-aarch64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/445109550"
provenance = "github-attestations"
[tools.aube."platforms.linux-x64"]
checksum = "sha256:2ed5bde0bad38d7b3c34195f7f51e5fd491843e1344f3ad35e386af201561fee"
url = "https://github.com/jdx/aube/releases/download/v1.19.0/aube-v1.19.0-x86_64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/445116084"
provenance = "github-attestations"
[tools.aube."platforms.linux-x64-baseline"]
checksum = "sha256:2ed5bde0bad38d7b3c34195f7f51e5fd491843e1344f3ad35e386af201561fee"
url = "https://github.com/jdx/aube/releases/download/v1.19.0/aube-v1.19.0-x86_64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/445116084"
provenance = "github-attestations"
[tools.aube."platforms.linux-x64-musl"]
checksum = "sha256:f0e16a8d4e76feb21010257def908727cbc278d0361e7b3adfeb5d894e11767e"
url = "https://github.com/jdx/aube/releases/download/v1.19.0/aube-v1.19.0-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/445114567"
provenance = "github-attestations"
[tools.aube."platforms.linux-x64-musl-baseline"]
checksum = "sha256:f0e16a8d4e76feb21010257def908727cbc278d0361e7b3adfeb5d894e11767e"
url = "https://github.com/jdx/aube/releases/download/v1.19.0/aube-v1.19.0-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/445114567"
provenance = "github-attestations"
[tools.aube."platforms.macos-arm64"]
checksum = "sha256:7652e1a68f0cf14d7228c7e8d6382fe9454d6baf2e0248523006d9fab542e280"
url = "https://github.com/jdx/aube/releases/download/v1.19.0/aube-v1.19.0-aarch64-apple-darwin.tar.gz"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/445178323"
provenance = "github-attestations"
[tools.aube."platforms.windows-x64"]
checksum = "sha256:90c471a2c2f7fb101c140ce14da2744d7dbc3dc7badd295079cf5d29b8bd9625"
url = "https://github.com/jdx/aube/releases/download/v1.19.0/aube-v1.19.0-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/445116933"
provenance = "github-attestations"
[tools.aube."platforms.windows-x64-baseline"]
checksum = "sha256:90c471a2c2f7fb101c140ce14da2744d7dbc3dc7badd295079cf5d29b8bd9625"
url = "https://github.com/jdx/aube/releases/download/v1.19.0/aube-v1.19.0-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/445116933"
provenance = "github-attestations"
[[tools.bun]]
version = "1.3.14"
backend = "core:bun"
[tools.bun."platforms.linux-arm64"]
checksum = "sha256:a27ffb63a8310375836e0d6f668ae17fa8d8d18b88c37c821c65331973a19a3b"
url = "https://github.com/oven-sh/bun/releases/download/bun-v1.3.14/bun-linux-aarch64.zip"
[tools.bun."platforms.linux-arm64-musl"]
checksum = "sha256:b98e0ad3625c5c00d1d5b5ff55605c7adddbfae151861e68ade57b2d3b8703bb"
url = "https://github.com/oven-sh/bun/releases/download/bun-v1.3.14/bun-linux-aarch64-musl.zip"
[tools.bun."platforms.linux-x64"]
checksum = "sha256:951ee2aee855f08595aeec6225226a298d3fea83a3dcd6465c09cbccdf7e848f"
url = "https://github.com/oven-sh/bun/releases/download/bun-v1.3.14/bun-linux-x64.zip"
[tools.bun."platforms.linux-x64-baseline"]
checksum = "sha256:a063908ae08b7852ca10939bbdc6ceed3ddabce8fb9402dce83d65d73b36e6c7"
url = "https://github.com/oven-sh/bun/releases/download/bun-v1.3.14/bun-linux-x64-baseline.zip"
[tools.bun."platforms.linux-x64-musl"]
checksum = "sha256:14bd9aedeebf1dba67e8def9531c89bc989ecfdf1de42e5bfcaf1b8cd9294719"
url = "https://github.com/oven-sh/bun/releases/download/bun-v1.3.14/bun-linux-x64-musl.zip"
[tools.bun."platforms.linux-x64-musl-baseline"]
checksum = "sha256:56a7d6806cf155536c0178f0ea5fbd098e684fa509ebdb4fc0a7e19fb65382dc"
url = "https://github.com/oven-sh/bun/releases/download/bun-v1.3.14/bun-linux-x64-musl-baseline.zip"
[tools.bun."platforms.macos-arm64"]
checksum = "sha256:d8b96221828ad6f97ac7ac0ab7e95872341af763001e8803e8267652c2652620"
url = "https://github.com/oven-sh/bun/releases/download/bun-v1.3.14/bun-darwin-aarch64.zip"
[tools.bun."platforms.windows-x64"]
checksum = "sha256:0a0620930b6675d7ba440e81f4e0e00d3cfbe096c4b140d3fff02205e9e18922"
url = "https://github.com/oven-sh/bun/releases/download/bun-v1.3.14/bun-windows-x64.zip"
[tools.bun."platforms.windows-x64-baseline"]
checksum = "sha256:538f9c846355d9e847b2671bc00c47da4229a0befb24df3282b739770f3b475f"
url = "https://github.com/oven-sh/bun/releases/download/bun-v1.3.14/bun-windows-x64-baseline.zip"
[[tools.cargo-binstall]]
version = "1.20.0"
backend = "aqua:cargo-bins/cargo-binstall"
[tools.cargo-binstall."platforms.linux-arm64"]
checksum = "sha256:3e85b6bbdf971806562ea4070bb4bdae8591fb7bcc2e0f4ea693f40c4ab92159"
url = "https://github.com/cargo-bins/cargo-binstall/releases/download/v1.20.0/cargo-binstall-aarch64-unknown-linux-musl.tgz"
url_api = "https://api.github.com/repos/cargo-bins/cargo-binstall/releases/assets/441741553"
provenance = "github-attestations"
[tools.cargo-binstall."platforms.linux-arm64-musl"]
checksum = "sha256:3e85b6bbdf971806562ea4070bb4bdae8591fb7bcc2e0f4ea693f40c4ab92159"
url = "https://github.com/cargo-bins/cargo-binstall/releases/download/v1.20.0/cargo-binstall-aarch64-unknown-linux-musl.tgz"
url_api = "https://api.github.com/repos/cargo-bins/cargo-binstall/releases/assets/441741553"
provenance = "github-attestations"
[tools.cargo-binstall."platforms.linux-x64"]
checksum = "sha256:4d7875788d0505547c220d2b02d3619aac0dd19b7033eba7005a8d09ff1dc433"
url = "https://github.com/cargo-bins/cargo-binstall/releases/download/v1.20.0/cargo-binstall-x86_64-unknown-linux-musl.tgz"
url_api = "https://api.github.com/repos/cargo-bins/cargo-binstall/releases/assets/441741097"
provenance = "github-attestations"
[tools.cargo-binstall."platforms.linux-x64-baseline"]
checksum = "sha256:4d7875788d0505547c220d2b02d3619aac0dd19b7033eba7005a8d09ff1dc433"
url = "https://github.com/cargo-bins/cargo-binstall/releases/download/v1.20.0/cargo-binstall-x86_64-unknown-linux-musl.tgz"
url_api = "https://api.github.com/repos/cargo-bins/cargo-binstall/releases/assets/441741097"
provenance = "github-attestations"
[tools.cargo-binstall."platforms.linux-x64-musl"]
checksum = "sha256:4d7875788d0505547c220d2b02d3619aac0dd19b7033eba7005a8d09ff1dc433"
url = "https://github.com/cargo-bins/cargo-binstall/releases/download/v1.20.0/cargo-binstall-x86_64-unknown-linux-musl.tgz"
url_api = "https://api.github.com/repos/cargo-bins/cargo-binstall/releases/assets/441741097"
provenance = "github-attestations"
[tools.cargo-binstall."platforms.linux-x64-musl-baseline"]
checksum = "sha256:4d7875788d0505547c220d2b02d3619aac0dd19b7033eba7005a8d09ff1dc433"
url = "https://github.com/cargo-bins/cargo-binstall/releases/download/v1.20.0/cargo-binstall-x86_64-unknown-linux-musl.tgz"
url_api = "https://api.github.com/repos/cargo-bins/cargo-binstall/releases/assets/441741097"
provenance = "github-attestations"
[tools.cargo-binstall."platforms.macos-arm64"]
checksum = "sha256:24a9cbf1e4c238881f408d7cca11f4aafba1fdeb0e518887638af5dd40e6ac3d"
url = "https://github.com/cargo-bins/cargo-binstall/releases/download/v1.20.0/cargo-binstall-aarch64-apple-darwin.zip"
url_api = "https://api.github.com/repos/cargo-bins/cargo-binstall/releases/assets/441741680"
provenance = "github-attestations"
[tools.cargo-binstall."platforms.windows-x64"]
checksum = "sha256:185c115ef1977e044e009336c77bf41cc61f144944fdb43e2d84f291b96648dc"
url = "https://github.com/cargo-bins/cargo-binstall/releases/download/v1.20.0/cargo-binstall-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/cargo-bins/cargo-binstall/releases/assets/441741207"
provenance = "github-attestations"
[tools.cargo-binstall."platforms.windows-x64-baseline"]
checksum = "sha256:185c115ef1977e044e009336c77bf41cc61f144944fdb43e2d84f291b96648dc"
url = "https://github.com/cargo-bins/cargo-binstall/releases/download/v1.20.0/cargo-binstall-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/cargo-bins/cargo-binstall/releases/assets/441741207"
provenance = "github-attestations"
[[tools.cargo-insta]]
version = "1.48.0"
backend = "aqua:mitsuhiko/insta"
[tools.cargo-insta."platforms.linux-x64"]
checksum = "sha256:703aa7d151ae59cac0bf8e7c2c27da4aca8070f3cb178f624ae10621ef77f5f5"
url = "https://github.com/mitsuhiko/insta/releases/download/1.48.0/cargo-insta-x86_64-unknown-linux-musl.tar.xz"
url_api = "https://api.github.com/repos/mitsuhiko/insta/releases/assets/444757872"
[tools.cargo-insta."platforms.linux-x64-baseline"]
checksum = "sha256:703aa7d151ae59cac0bf8e7c2c27da4aca8070f3cb178f624ae10621ef77f5f5"
url = "https://github.com/mitsuhiko/insta/releases/download/1.48.0/cargo-insta-x86_64-unknown-linux-musl.tar.xz"
url_api = "https://api.github.com/repos/mitsuhiko/insta/releases/assets/444757872"
[tools.cargo-insta."platforms.linux-x64-musl"]
checksum = "sha256:703aa7d151ae59cac0bf8e7c2c27da4aca8070f3cb178f624ae10621ef77f5f5"
url = "https://github.com/mitsuhiko/insta/releases/download/1.48.0/cargo-insta-x86_64-unknown-linux-musl.tar.xz"
url_api = "https://api.github.com/repos/mitsuhiko/insta/releases/assets/444757872"
[tools.cargo-insta."platforms.linux-x64-musl-baseline"]
checksum = "sha256:703aa7d151ae59cac0bf8e7c2c27da4aca8070f3cb178f624ae10621ef77f5f5"
url = "https://github.com/mitsuhiko/insta/releases/download/1.48.0/cargo-insta-x86_64-unknown-linux-musl.tar.xz"
url_api = "https://api.github.com/repos/mitsuhiko/insta/releases/assets/444757872"
[tools.cargo-insta."platforms.macos-arm64"]
checksum = "sha256:26f081f5bf62d1dc03aae9c4137188d66a2debe6bcaf2884f2153fcb6eda27cb"
url = "https://github.com/mitsuhiko/insta/releases/download/1.48.0/cargo-insta-aarch64-apple-darwin.tar.xz"
url_api = "https://api.github.com/repos/mitsuhiko/insta/releases/assets/444757856"
[tools.cargo-insta."platforms.windows-x64"]
checksum = "sha256:7e23929588aaf5daff1e93bfc4addca7ccf55195444e84552b6588c9d864642e"
url = "https://github.com/mitsuhiko/insta/releases/download/1.48.0/cargo-insta-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/mitsuhiko/insta/releases/assets/444757862"
[tools.cargo-insta."platforms.windows-x64-baseline"]
checksum = "sha256:7e23929588aaf5daff1e93bfc4addca7ccf55195444e84552b6588c9d864642e"
url = "https://github.com/mitsuhiko/insta/releases/download/1.48.0/cargo-insta-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/mitsuhiko/insta/releases/assets/444757862"
[[tools."cargo:cargo-edit"]]
version = "0.13.11"
backend = "cargo:cargo-edit"
[[tools."cargo:toml-cli"]]
version = "0.2.3"
backend = "cargo:toml-cli"
[[tools.communique]]
version = "1.1.3"
backend = "github:jdx/communique"
[tools.communique."platforms.linux-arm64"]
checksum = "sha256:ed4cfaf449d75f12734be4b5508104fe4bc224e1694052c31dc78b025408a918"
url = "https://github.com/jdx/communique/releases/download/v1.1.3/communique-aarch64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/communique/releases/assets/413754362"
provenance = "github-attestations"
[tools.communique."platforms.linux-arm64-musl"]
checksum = "sha256:ece7d0bf5946b86bdead1e7fbc6dd40a41585c1c950f3b637489cb783662bf9f"
url = "https://github.com/jdx/communique/releases/download/v1.1.3/communique-aarch64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/communique/releases/assets/413753918"
provenance = "github-attestations"
[tools.communique."platforms.linux-x64"]
checksum = "sha256:61b46cf231882e0a10e0489df310ec9b875e83da0f38b60d6ac7bd67e09a15dc"
url = "https://github.com/jdx/communique/releases/download/v1.1.3/communique-x86_64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/communique/releases/assets/413753688"
provenance = "github-attestations"
[tools.communique."platforms.linux-x64-baseline"]
checksum = "sha256:61b46cf231882e0a10e0489df310ec9b875e83da0f38b60d6ac7bd67e09a15dc"
url = "https://github.com/jdx/communique/releases/download/v1.1.3/communique-x86_64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/communique/releases/assets/413753688"
provenance = "github-attestations"
[tools.communique."platforms.linux-x64-musl"]
checksum = "sha256:9c8d784d8bb91e83cd467ed0d26be6ed3290a61a482413d42b12321aee20d5c0"
url = "https://github.com/jdx/communique/releases/download/v1.1.3/communique-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/communique/releases/assets/413753784"
provenance = "github-attestations"
[tools.communique."platforms.linux-x64-musl-baseline"]
checksum = "sha256:9c8d784d8bb91e83cd467ed0d26be6ed3290a61a482413d42b12321aee20d5c0"
url = "https://github.com/jdx/communique/releases/download/v1.1.3/communique-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/communique/releases/assets/413753784"
provenance = "github-attestations"
[tools.communique."platforms.macos-arm64"]
checksum = "sha256:7113bdb84a75ca23cccada1acc348a0770ec16a4b12a128f7b3f6b8c7764d10c"
url = "https://github.com/jdx/communique/releases/download/v1.1.3/communique-aarch64-apple-darwin.tar.gz"
url_api = "https://api.github.com/repos/jdx/communique/releases/assets/413753891"
provenance = "github-attestations"
[tools.communique."platforms.windows-x64"]
checksum = "sha256:887a39f27f86fa785fd3c27e13b4b0360d68827a9bb747cbe1929fd691708456"
url = "https://github.com/jdx/communique/releases/download/v1.1.3/communique-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/jdx/communique/releases/assets/413755231"
provenance = "github-attestations"
[tools.communique."platforms.windows-x64-baseline"]
checksum = "sha256:887a39f27f86fa785fd3c27e13b4b0360d68827a9bb747cbe1929fd691708456"
url = "https://github.com/jdx/communique/releases/download/v1.1.3/communique-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/jdx/communique/releases/assets/413755231"
provenance = "github-attestations"
[[tools.fd]]
version = "10.4.2"
backend = "aqua:sharkdp/fd"
[tools.fd."platforms.linux-arm64"]
checksum = "sha256:f32d3657473fba74e2600babc8db0b93420d51169223b7e8143b2ed55d8fd9e8"
url = "https://github.com/sharkdp/fd/releases/download/v10.4.2/fd-v10.4.2-aarch64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/sharkdp/fd/releases/assets/370662859"
[tools.fd."platforms.linux-arm64-musl"]
checksum = "sha256:f32d3657473fba74e2600babc8db0b93420d51169223b7e8143b2ed55d8fd9e8"
url = "https://github.com/sharkdp/fd/releases/download/v10.4.2/fd-v10.4.2-aarch64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/sharkdp/fd/releases/assets/370662859"
[tools.fd."platforms.linux-x64"]
checksum = "sha256:e3257d48e29a6be965187dbd24ce9af564e0fe67b3e73c9bdcd180f4ec11bdde"
url = "https://github.com/sharkdp/fd/releases/download/v10.4.2/fd-v10.4.2-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/sharkdp/fd/releases/assets/370662855"
[tools.fd."platforms.linux-x64-baseline"]
checksum = "sha256:e3257d48e29a6be965187dbd24ce9af564e0fe67b3e73c9bdcd180f4ec11bdde"
url = "https://github.com/sharkdp/fd/releases/download/v10.4.2/fd-v10.4.2-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/sharkdp/fd/releases/assets/370662855"
[tools.fd."platforms.linux-x64-musl"]
checksum = "sha256:e3257d48e29a6be965187dbd24ce9af564e0fe67b3e73c9bdcd180f4ec11bdde"
url = "https://github.com/sharkdp/fd/releases/download/v10.4.2/fd-v10.4.2-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/sharkdp/fd/releases/assets/370662855"
[tools.fd."platforms.linux-x64-musl-baseline"]
checksum = "sha256:e3257d48e29a6be965187dbd24ce9af564e0fe67b3e73c9bdcd180f4ec11bdde"
url = "https://github.com/sharkdp/fd/releases/download/v10.4.2/fd-v10.4.2-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/sharkdp/fd/releases/assets/370662855"
[tools.fd."platforms.macos-arm64"]
checksum = "sha256:623dc0afc81b92e4d4606b380d7bc91916ba7b97814263e554d50923a39e480a"
url = "https://github.com/sharkdp/fd/releases/download/v10.4.2/fd-v10.4.2-aarch64-apple-darwin.tar.gz"
url_api = "https://api.github.com/repos/sharkdp/fd/releases/assets/370661116"
[tools.fd."platforms.windows-x64"]
checksum = "sha256:b2816e506390a89941c63c9187d58a3cc10e9a55f2ef0685f9ea0eccaf7c98c8"
url = "https://github.com/sharkdp/fd/releases/download/v10.4.2/fd-v10.4.2-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/sharkdp/fd/releases/assets/370661516"
[tools.fd."platforms.windows-x64-baseline"]
checksum = "sha256:b2816e506390a89941c63c9187d58a3cc10e9a55f2ef0685f9ea0eccaf7c98c8"
url = "https://github.com/sharkdp/fd/releases/download/v10.4.2/fd-v10.4.2-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/sharkdp/fd/releases/assets/370661516"
[[tools.gh]]
version = "2.94.0"
backend = "aqua:cli/cli"
[tools.gh."platforms.linux-arm64"]
checksum = "sha256:705a23b70b0f1b7ba4c302fdcef392ce3edaacfa7ce8e85e4d93d72ea800a538"
url = "https://github.com/cli/cli/releases/download/v2.94.0/gh_2.94.0_linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/cli/cli/releases/assets/444075691"
provenance = "github-attestations"
[tools.gh."platforms.linux-arm64-musl"]
checksum = "sha256:705a23b70b0f1b7ba4c302fdcef392ce3edaacfa7ce8e85e4d93d72ea800a538"
url = "https://github.com/cli/cli/releases/download/v2.94.0/gh_2.94.0_linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/cli/cli/releases/assets/444075691"
provenance = "github-attestations"
[tools.gh."platforms.linux-x64"]
checksum = "sha256:a757f1ba6db18f4de8cbadb244843a5f89bc75b5e7c6fc127d2bd77fbd12ed62"
url = "https://github.com/cli/cli/releases/download/v2.94.0/gh_2.94.0_linux_amd64.tar.gz"
url_api = "https://api.github.com/repos/cli/cli/releases/assets/444075681"
provenance = "github-attestations"
[tools.gh."platforms.linux-x64-baseline"]
checksum = "sha256:a757f1ba6db18f4de8cbadb244843a5f89bc75b5e7c6fc127d2bd77fbd12ed62"
url = "https://github.com/cli/cli/releases/download/v2.94.0/gh_2.94.0_linux_amd64.tar.gz"
url_api = "https://api.github.com/repos/cli/cli/releases/assets/444075681"
provenance = "github-attestations"
[tools.gh."platforms.linux-x64-musl"]
checksum = "sha256:a757f1ba6db18f4de8cbadb244843a5f89bc75b5e7c6fc127d2bd77fbd12ed62"
url = "https://github.com/cli/cli/releases/download/v2.94.0/gh_2.94.0_linux_amd64.tar.gz"
url_api = "https://api.github.com/repos/cli/cli/releases/assets/444075681"
provenance = "github-attestations"
[tools.gh."platforms.linux-x64-musl-baseline"]
checksum = "sha256:a757f1ba6db18f4de8cbadb244843a5f89bc75b5e7c6fc127d2bd77fbd12ed62"
url = "https://github.com/cli/cli/releases/download/v2.94.0/gh_2.94.0_linux_amd64.tar.gz"
url_api = "https://api.github.com/repos/cli/cli/releases/assets/444075681"
provenance = "github-attestations"
[tools.gh."platforms.macos-arm64"]
checksum = "sha256:4f9bc1a5e77500737290a307b40b4c396a4d23729f55340f2a83f414410165a1"
url = "https://github.com/cli/cli/releases/download/v2.94.0/gh_2.94.0_macOS_arm64.zip"
url_api = "https://api.github.com/repos/cli/cli/releases/assets/444075720"
provenance = "github-attestations"
[tools.gh."platforms.windows-x64"]
checksum = "sha256:c0766af54195dfa0bcd9a0cb63a45c313fbaffdebb9f736f666e9ba4be8c91e8"
url = "https://github.com/cli/cli/releases/download/v2.94.0/gh_2.94.0_windows_amd64.zip"
url_api = "https://api.github.com/repos/cli/cli/releases/assets/444075741"
provenance = "github-attestations"
[tools.gh."platforms.windows-x64-baseline"]
checksum = "sha256:c0766af54195dfa0bcd9a0cb63a45c313fbaffdebb9f736f666e9ba4be8c91e8"
url = "https://github.com/cli/cli/releases/download/v2.94.0/gh_2.94.0_windows_amd64.zip"
url_api = "https://api.github.com/repos/cli/cli/releases/assets/444075741"
provenance = "github-attestations"
[[tools.git-cliff]]
version = "2.13.1"
backend = "aqua:orhun/git-cliff"
[tools.git-cliff."platforms.linux-arm64"]
checksum = "sha256:4054c124b926c117f3fa048939bc8be0a954f29f3b6f367627e8cb22c1971882"
url = "https://github.com/orhun/git-cliff/releases/download/v2.13.1/git-cliff-2.13.1-aarch64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/orhun/git-cliff/releases/assets/405850720"
[tools.git-cliff."platforms.linux-arm64-musl"]
checksum = "sha256:4054c124b926c117f3fa048939bc8be0a954f29f3b6f367627e8cb22c1971882"
url = "https://github.com/orhun/git-cliff/releases/download/v2.13.1/git-cliff-2.13.1-aarch64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/orhun/git-cliff/releases/assets/405850720"
[tools.git-cliff."platforms.linux-x64"]
checksum = "sha256:200d2535da6d9703f3bcc8a4d159c3b55eacdb01cf2148c55b3eee9dd04d5249"
url = "https://github.com/orhun/git-cliff/releases/download/v2.13.1/git-cliff-2.13.1-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/orhun/git-cliff/releases/assets/405850671"
[tools.git-cliff."platforms.linux-x64-baseline"]
checksum = "sha256:200d2535da6d9703f3bcc8a4d159c3b55eacdb01cf2148c55b3eee9dd04d5249"
url = "https://github.com/orhun/git-cliff/releases/download/v2.13.1/git-cliff-2.13.1-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/orhun/git-cliff/releases/assets/405850671"
[tools.git-cliff."platforms.linux-x64-musl"]
checksum = "sha256:200d2535da6d9703f3bcc8a4d159c3b55eacdb01cf2148c55b3eee9dd04d5249"
url = "https://github.com/orhun/git-cliff/releases/download/v2.13.1/git-cliff-2.13.1-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/orhun/git-cliff/releases/assets/405850671"
[tools.git-cliff."platforms.linux-x64-musl-baseline"]
checksum = "sha256:200d2535da6d9703f3bcc8a4d159c3b55eacdb01cf2148c55b3eee9dd04d5249"
url = "https://github.com/orhun/git-cliff/releases/download/v2.13.1/git-cliff-2.13.1-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/orhun/git-cliff/releases/assets/405850671"
[tools.git-cliff."platforms.macos-arm64"]
checksum = "sha256:21547ae4a0421164070ab75c2522864ea5565858a011fabc5f583061b20f1226"
url = "https://github.com/orhun/git-cliff/releases/download/v2.13.1/git-cliff-2.13.1-aarch64-apple-darwin.tar.gz"
url_api = "https://api.github.com/repos/orhun/git-cliff/releases/assets/405849885"
[tools.git-cliff."platforms.windows-x64"]
checksum = "sha256:3ae3a5549e85c7ad5b20192ebcfee4371269deca51255f6f2f2e051c6541f5ca"
url = "https://github.com/orhun/git-cliff/releases/download/v2.13.1/git-cliff-2.13.1-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/orhun/git-cliff/releases/assets/405851866"
[tools.git-cliff."platforms.windows-x64-baseline"]
checksum = "sha256:3ae3a5549e85c7ad5b20192ebcfee4371269deca51255f6f2f2e051c6541f5ca"
url = "https://github.com/orhun/git-cliff/releases/download/v2.13.1/git-cliff-2.13.1-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/orhun/git-cliff/releases/assets/405851866"
[[tools."github:crate-ci/cargo-release"]]
version = "1.1.2"
backend = "github:crate-ci/cargo-release"
[tools."github:crate-ci/cargo-release"."platforms.linux-arm64"]
checksum = "sha256:ee60ed5ad9c7c73e68ead7ccbc56fc2bf367eaa7f188b722a00cf15a71f08c6a"
url = "https://github.com/crate-ci/cargo-release/releases/download/v1.1.2/cargo-release-v1.1.2-aarch64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/crate-ci/cargo-release/releases/assets/380569253"
[tools."github:crate-ci/cargo-release"."platforms.linux-arm64-musl"]
checksum = "sha256:ee60ed5ad9c7c73e68ead7ccbc56fc2bf367eaa7f188b722a00cf15a71f08c6a"
url = "https://github.com/crate-ci/cargo-release/releases/download/v1.1.2/cargo-release-v1.1.2-aarch64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/crate-ci/cargo-release/releases/assets/380569253"
[tools."github:crate-ci/cargo-release"."platforms.linux-x64"]
checksum = "sha256:24e641b88c90411aaacba613f40d5c8f2b686b2721dfb61afd25b67e16956089"
url = "https://github.com/crate-ci/cargo-release/releases/download/v1.1.2/cargo-release-v1.1.2-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/crate-ci/cargo-release/releases/assets/380569398"
[tools."github:crate-ci/cargo-release"."platforms.linux-x64-baseline"]
checksum = "sha256:24e641b88c90411aaacba613f40d5c8f2b686b2721dfb61afd25b67e16956089"
url = "https://github.com/crate-ci/cargo-release/releases/download/v1.1.2/cargo-release-v1.1.2-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/crate-ci/cargo-release/releases/assets/380569398"
[tools."github:crate-ci/cargo-release"."platforms.linux-x64-musl"]
checksum = "sha256:24e641b88c90411aaacba613f40d5c8f2b686b2721dfb61afd25b67e16956089"
url = "https://github.com/crate-ci/cargo-release/releases/download/v1.1.2/cargo-release-v1.1.2-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/crate-ci/cargo-release/releases/assets/380569398"
[tools."github:crate-ci/cargo-release"."platforms.linux-x64-musl-baseline"]
checksum = "sha256:24e641b88c90411aaacba613f40d5c8f2b686b2721dfb61afd25b67e16956089"
url = "https://github.com/crate-ci/cargo-release/releases/download/v1.1.2/cargo-release-v1.1.2-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/crate-ci/cargo-release/releases/assets/380569398"
[tools."github:crate-ci/cargo-release"."platforms.macos-arm64"]
checksum = "sha256:135e1152c39b1a5ab4d3d370d0b95b0ce20a8e5a937465fcd9c6421d7c489a5b"
url = "https://github.com/crate-ci/cargo-release/releases/download/v1.1.2/cargo-release-v1.1.2-aarch64-apple-darwin.tar.gz"
url_api = "https://api.github.com/repos/crate-ci/cargo-release/releases/assets/380569463"
[tools."github:crate-ci/cargo-release"."platforms.windows-x64"]
checksum = "sha256:b36c0d3b8bd64ff78bfe6904525c5f7d8eafe56a5cd45b0d94793d8072500074"
url = "https://github.com/crate-ci/cargo-release/releases/download/v1.1.2/cargo-release-v1.1.2-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/crate-ci/cargo-release/releases/assets/380570010"
[tools."github:crate-ci/cargo-release"."platforms.windows-x64-baseline"]
checksum = "sha256:b36c0d3b8bd64ff78bfe6904525c5f7d8eafe56a5cd45b0d94793d8072500074"
url = "https://github.com/crate-ci/cargo-release/releases/download/v1.1.2/cargo-release-v1.1.2-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/crate-ci/cargo-release/releases/assets/380570010"
[[tools.hk]]
version = "1.48.0"
backend = "aqua:jdx/hk"
[tools.hk."platforms.linux-arm64"]
checksum = "sha256:d72463103d9682094e9b1fb2f20ef8824d1ec7a9b23f79163921bac7785fcd51"
url = "https://github.com/jdx/hk/releases/download/v1.48.0/hk-aarch64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/445033855"
[tools.hk."platforms.linux-arm64-musl"]
checksum = "sha256:c6ba1ed78e6d205f442e013ffb20e815ff6498ae12aac0705fd3132a9a9b92a0"
url = "https://github.com/jdx/hk/releases/download/v1.48.0/hk-aarch64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/445033852"
[tools.hk."platforms.linux-x64"]
checksum = "sha256:6b7f9a28391a8b13b88208d723cbde7b945d095cbb03455c7dd5f8df551ed380"
url = "https://github.com/jdx/hk/releases/download/v1.48.0/hk-x86_64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/445033857"
[tools.hk."platforms.linux-x64-baseline"]
checksum = "sha256:6b7f9a28391a8b13b88208d723cbde7b945d095cbb03455c7dd5f8df551ed380"
url = "https://github.com/jdx/hk/releases/download/v1.48.0/hk-x86_64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/445033857"
[tools.hk."platforms.linux-x64-musl"]
checksum = "sha256:bde5bcaab4035488520ab977f23bfe0b1b639152c6ed7200c9592724e2afe88d"
url = "https://github.com/jdx/hk/releases/download/v1.48.0/hk-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/445033859"
[tools.hk."platforms.linux-x64-musl-baseline"]
checksum = "sha256:bde5bcaab4035488520ab977f23bfe0b1b639152c6ed7200c9592724e2afe88d"
url = "https://github.com/jdx/hk/releases/download/v1.48.0/hk-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/445033859"
[tools.hk."platforms.macos-arm64"]
checksum = "sha256:e3985a14f41ba5eb849bf79502ad19201d0a582114a5ebe35a9afff16742024b"
url = "https://github.com/jdx/hk/releases/download/v1.48.0/hk-aarch64-apple-darwin.tar.gz"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/445033853"
[tools.hk."platforms.windows-x64"]
checksum = "sha256:6349ab27cd7a9c07e68edc7c2af0859c8a540482e97a5b7306e9e88460a5ca43"
url = "https://github.com/jdx/hk/releases/download/v1.48.0/hk-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/445033856"
[tools.hk."platforms.windows-x64-baseline"]
checksum = "sha256:6349ab27cd7a9c07e68edc7c2af0859c8a540482e97a5b7306e9e88460a5ca43"
url = "https://github.com/jdx/hk/releases/download/v1.48.0/hk-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/445033856"
[[tools.jq]]
version = "1.8.1"
backend = "aqua:jqlang/jq"
[tools.jq."platforms.linux-arm64"]
checksum = "sha256:6bc62f25981328edd3cfcfe6fe51b073f2d7e7710d7ef7fcdac28d4e384fc3d4"
url = "https://github.com/jqlang/jq/releases/download/jq-1.8.1/jq-linux-arm64"
url_api = "https://api.github.com/repos/jqlang/jq/releases/assets/268981481"
provenance = "github-attestations"
[tools.jq."platforms.linux-arm64-musl"]
checksum = "sha256:6bc62f25981328edd3cfcfe6fe51b073f2d7e7710d7ef7fcdac28d4e384fc3d4"
url = "https://github.com/jqlang/jq/releases/download/jq-1.8.1/jq-linux-arm64"
url_api = "https://api.github.com/repos/jqlang/jq/releases/assets/268981481"
provenance = "github-attestations"
[tools.jq."platforms.linux-x64"]
checksum = "sha256:020468de7539ce70ef1bceaf7cde2e8c4f2ca6c3afb84642aabc5c97d9fc2a0d"
url = "https://github.com/jqlang/jq/releases/download/jq-1.8.1/jq-linux-amd64"
url_api = "https://api.github.com/repos/jqlang/jq/releases/assets/268981484"
provenance = "github-attestations"
[tools.jq."platforms.linux-x64-baseline"]
checksum = "sha256:020468de7539ce70ef1bceaf7cde2e8c4f2ca6c3afb84642aabc5c97d9fc2a0d"
url = "https://github.com/jqlang/jq/releases/download/jq-1.8.1/jq-linux-amd64"
url_api = "https://api.github.com/repos/jqlang/jq/releases/assets/268981484"
provenance = "github-attestations"
[tools.jq."platforms.linux-x64-musl"]
checksum = "sha256:020468de7539ce70ef1bceaf7cde2e8c4f2ca6c3afb84642aabc5c97d9fc2a0d"
url = "https://github.com/jqlang/jq/releases/download/jq-1.8.1/jq-linux-amd64"
url_api = "https://api.github.com/repos/jqlang/jq/releases/assets/268981484"
provenance = "github-attestations"
[tools.jq."platforms.linux-x64-musl-baseline"]
checksum = "sha256:020468de7539ce70ef1bceaf7cde2e8c4f2ca6c3afb84642aabc5c97d9fc2a0d"
url = "https://github.com/jqlang/jq/releases/download/jq-1.8.1/jq-linux-amd64"
url_api = "https://api.github.com/repos/jqlang/jq/releases/assets/268981484"
provenance = "github-attestations"
[tools.jq."platforms.macos-arm64"]
checksum = "sha256:a9fe3ea2f86dfc72f6728417521ec9067b343277152b114f4e98d8cb0e263603"
url = "https://github.com/jqlang/jq/releases/download/jq-1.8.1/jq-macos-arm64"
url_api = "https://api.github.com/repos/jqlang/jq/releases/assets/268981506"
provenance = "github-attestations"
[tools.jq."platforms.windows-x64"]
checksum = "sha256:23cb60a1354eed6bcc8d9b9735e8c7b388cd1fdcb75726b93bc299ef22dd9334"
url = "https://github.com/jqlang/jq/releases/download/jq-1.8.1/jq-windows-amd64.exe"
url_api = "https://api.github.com/repos/jqlang/jq/releases/assets/268981509"
provenance = "github-attestations"
[tools.jq."platforms.windows-x64-baseline"]
checksum = "sha256:23cb60a1354eed6bcc8d9b9735e8c7b388cd1fdcb75726b93bc299ef22dd9334"
url = "https://github.com/jqlang/jq/releases/download/jq-1.8.1/jq-windows-amd64.exe"
url_api = "https://api.github.com/repos/jqlang/jq/releases/assets/268981509"
provenance = "github-attestations"
[[tools.lua-language-server]]
version = "3.18.2"
backend = "aqua:LuaLS/lua-language-server"
[tools.lua-language-server."platforms.linux-arm64"]
checksum = "sha256:273af33f26f4a1143f27c96d9f9e1188aba619c71e0807042134f66b4bd27f24"
url = "https://github.com/LuaLS/lua-language-server/releases/download/3.18.2/lua-language-server-3.18.2-linux-arm64.tar.gz"
url_api = "https://api.github.com/repos/LuaLS/lua-language-server/releases/assets/396268278"
[tools.lua-language-server."platforms.linux-arm64-musl"]
checksum = "sha256:273af33f26f4a1143f27c96d9f9e1188aba619c71e0807042134f66b4bd27f24"
url = "https://github.com/LuaLS/lua-language-server/releases/download/3.18.2/lua-language-server-3.18.2-linux-arm64.tar.gz"
url_api = "https://api.github.com/repos/LuaLS/lua-language-server/releases/assets/396268278"
[tools.lua-language-server."platforms.linux-x64"]
checksum = "sha256:ca71415dd19f19e30aaa35a4915aefca9fdb5fec31b98331cc3d77f778d539c5"
url = "https://github.com/LuaLS/lua-language-server/releases/download/3.18.2/lua-language-server-3.18.2-linux-x64.tar.gz"
url_api = "https://api.github.com/repos/LuaLS/lua-language-server/releases/assets/396268957"
[tools.lua-language-server."platforms.linux-x64-baseline"]
checksum = "sha256:ca71415dd19f19e30aaa35a4915aefca9fdb5fec31b98331cc3d77f778d539c5"
url = "https://github.com/LuaLS/lua-language-server/releases/download/3.18.2/lua-language-server-3.18.2-linux-x64.tar.gz"
url_api = "https://api.github.com/repos/LuaLS/lua-language-server/releases/assets/396268957"
[tools.lua-language-server."platforms.linux-x64-musl"]
checksum = "sha256:ca71415dd19f19e30aaa35a4915aefca9fdb5fec31b98331cc3d77f778d539c5"
url = "https://github.com/LuaLS/lua-language-server/releases/download/3.18.2/lua-language-server-3.18.2-linux-x64.tar.gz"
url_api = "https://api.github.com/repos/LuaLS/lua-language-server/releases/assets/396268957"
[tools.lua-language-server."platforms.linux-x64-musl-baseline"]
checksum = "sha256:ca71415dd19f19e30aaa35a4915aefca9fdb5fec31b98331cc3d77f778d539c5"
url = "https://github.com/LuaLS/lua-language-server/releases/download/3.18.2/lua-language-server-3.18.2-linux-x64.tar.gz"
url_api = "https://api.github.com/repos/LuaLS/lua-language-server/releases/assets/396268957"
[tools.lua-language-server."platforms.macos-arm64"]
checksum = "sha256:cec99d70b1f612acec4a10a79a03664e3aa0c229d4d8a586cb3f928ec37d509e"
url = "https://github.com/LuaLS/lua-language-server/releases/download/3.18.2/lua-language-server-3.18.2-darwin-arm64.tar.gz"
url_api = "https://api.github.com/repos/LuaLS/lua-language-server/releases/assets/396268945"
[tools.lua-language-server."platforms.windows-x64"]
checksum = "sha256:a4439a8f5e8e9e6505c11f045a7bf45db602124a1e246371c1dbe34924f3cf71"
url = "https://github.com/LuaLS/lua-language-server/releases/download/3.18.2/lua-language-server-3.18.2-win32-x64.zip"
url_api = "https://api.github.com/repos/LuaLS/lua-language-server/releases/assets/396269455"
[tools.lua-language-server."platforms.windows-x64-baseline"]
checksum = "sha256:a4439a8f5e8e9e6505c11f045a7bf45db602124a1e246371c1dbe34924f3cf71"
url = "https://github.com/LuaLS/lua-language-server/releases/download/3.18.2/lua-language-server-3.18.2-win32-x64.zip"
url_api = "https://api.github.com/repos/LuaLS/lua-language-server/releases/assets/396269455"
[[tools.node]]
version = "24.16.0"
backend = "core:node"
[tools.node."platforms.linux-arm64"]
checksum = "sha256:589f5b6dd4fcfee4dfda73013903c966abaa8abd93dbc9d436544e472b4f0e74"
url = "https://nodejs.org/dist/v24.16.0/node-v24.16.0-linux-arm64.tar.gz"
[tools.node."platforms.linux-arm64-musl"]
checksum = "sha256:85dde27aa73503b03dadfa0410a800067b4e3f702fb7fcaa3beaf284dfcc69e9"
url = "https://unofficial-builds.nodejs.org/download/release/v24.16.0/node-v24.16.0-linux-arm64-musl.tar.gz"
[tools.node."platforms.linux-x64"]
checksum = "sha256:2faf6a387e9b62b888e21c54f01249fb27537ffecf1842f29f4c919d0a59a0ff"
url = "https://nodejs.org/dist/v24.16.0/node-v24.16.0-linux-x64.tar.gz"
[tools.node."platforms.linux-x64-baseline"]
checksum = "sha256:2faf6a387e9b62b888e21c54f01249fb27537ffecf1842f29f4c919d0a59a0ff"
url = "https://nodejs.org/dist/v24.16.0/node-v24.16.0-linux-x64.tar.gz"
[tools.node."platforms.linux-x64-musl"]
checksum = "sha256:50df5d8d474892d4f7b906167df36f77f5b93908f63dc532dc568219cab65841"
url = "https://unofficial-builds.nodejs.org/download/release/v24.16.0/node-v24.16.0-linux-x64-musl.tar.gz"
[tools.node."platforms.linux-x64-musl-baseline"]
checksum = "sha256:50df5d8d474892d4f7b906167df36f77f5b93908f63dc532dc568219cab65841"
url = "https://unofficial-builds.nodejs.org/download/release/v24.16.0/node-v24.16.0-linux-x64-musl.tar.gz"
[tools.node."platforms.macos-arm64"]
checksum = "sha256:39189dab4eeb15706c424af0ac08a3044c9e48f7db12a7d77f6b7aafc7dd5df6"
url = "https://nodejs.org/dist/v24.16.0/node-v24.16.0-darwin-arm64.tar.gz"
[tools.node."platforms.windows-x64"]
checksum = "sha256:edaca9bd58ec8e92037dac4e877d52f6b8f430b81c18b57e264b4e2fb111cd56"
url = "https://nodejs.org/dist/v24.16.0/node-v24.16.0-win-x64.zip"
[tools.node."platforms.windows-x64-baseline"]
checksum = "sha256:edaca9bd58ec8e92037dac4e877d52f6b8f430b81c18b57e264b4e2fb111cd56"
url = "https://nodejs.org/dist/v24.16.0/node-v24.16.0-win-x64.zip"
[[tools."npm:ajv-cli"]]
version = "5.0.0"
backend = "npm:ajv-cli"
[[tools."npm:markdownlint-cli"]]
version = "0.48.0"
backend = "npm:markdownlint-cli"
[[tools.pkl]]
version = "0.31.1"
backend = "aqua:apple/pkl"
[tools.pkl."platforms.linux-arm64"]
checksum = "sha256:7ef10e743daa921fb94ae7bdb9ec6986f362bf250c55814b9ea2aeb13f2d083e"
url = "https://github.com/apple/pkl/releases/download/0.31.1/pkl-linux-aarch64"
url_api = "https://api.github.com/repos/apple/pkl/releases/assets/382243722"
[tools.pkl."platforms.linux-arm64-musl"]
checksum = "sha256:7ef10e743daa921fb94ae7bdb9ec6986f362bf250c55814b9ea2aeb13f2d083e"
url = "https://github.com/apple/pkl/releases/download/0.31.1/pkl-linux-aarch64"
url_api = "https://api.github.com/repos/apple/pkl/releases/assets/382243722"
[tools.pkl."platforms.linux-x64"]
checksum = "sha256:618f13955d755cafbfe8c9cba1d27635848cd49dbc6abffd398d2751db1231bf"
url = "https://github.com/apple/pkl/releases/download/0.31.1/pkl-linux-amd64"
url_api = "https://api.github.com/repos/apple/pkl/releases/assets/382243718"
[tools.pkl."platforms.linux-x64-baseline"]
checksum = "sha256:618f13955d755cafbfe8c9cba1d27635848cd49dbc6abffd398d2751db1231bf"
url = "https://github.com/apple/pkl/releases/download/0.31.1/pkl-linux-amd64"
url_api = "https://api.github.com/repos/apple/pkl/releases/assets/382243718"
[tools.pkl."platforms.linux-x64-musl"]
checksum = "sha256:618f13955d755cafbfe8c9cba1d27635848cd49dbc6abffd398d2751db1231bf"
url = "https://github.com/apple/pkl/releases/download/0.31.1/pkl-linux-amd64"
url_api = "https://api.github.com/repos/apple/pkl/releases/assets/382243718"
[tools.pkl."platforms.linux-x64-musl-baseline"]
checksum = "sha256:618f13955d755cafbfe8c9cba1d27635848cd49dbc6abffd398d2751db1231bf"
url = "https://github.com/apple/pkl/releases/download/0.31.1/pkl-linux-amd64"
url_api = "https://api.github.com/repos/apple/pkl/releases/assets/382243718"
[tools.pkl."platforms.macos-arm64"]
checksum = "sha256:1b6a5438d9624cd2798a7530721bbbfa27ef72efe5c878a1b6c546c6e7ca0e8f"
url = "https://github.com/apple/pkl/releases/download/0.31.1/pkl-macos-aarch64"
url_api = "https://api.github.com/repos/apple/pkl/releases/assets/382243720"
[tools.pkl."platforms.windows-x64"]
checksum = "sha256:a8834481667325b44c539dbb758d7365a16389070f343c04b639bbe525ede013"
url = "https://github.com/apple/pkl/releases/download/0.31.1/pkl-windows-amd64.exe"
url_api = "https://api.github.com/repos/apple/pkl/releases/assets/382243744"
[tools.pkl."platforms.windows-x64-baseline"]
checksum = "sha256:a8834481667325b44c539dbb758d7365a16389070f343c04b639bbe525ede013"
url = "https://github.com/apple/pkl/releases/download/0.31.1/pkl-windows-amd64.exe"
url_api = "https://api.github.com/repos/apple/pkl/releases/assets/382243744"
[[tools.prettier]]
version = "3.8.4"
backend = "npm:prettier"
[[tools.ripgrep]]
version = "15.1.0"
backend = "aqua:BurntSushi/ripgrep"
[tools.ripgrep."platforms.linux-arm64"]
checksum = "sha256:2b661c6ef508e902f388e9098d9c4c5aca72c87b55922d94abdba830b4dc885e"
url = "https://github.com/BurntSushi/ripgrep/releases/download/15.1.0/ripgrep-15.1.0-aarch64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/BurntSushi/ripgrep/releases/assets/307306472"
[tools.ripgrep."platforms.linux-arm64-musl"]
checksum = "sha256:2b661c6ef508e902f388e9098d9c4c5aca72c87b55922d94abdba830b4dc885e"
url = "https://github.com/BurntSushi/ripgrep/releases/download/15.1.0/ripgrep-15.1.0-aarch64-unknown-linux-gnu.tar.gz"
[tools.ripgrep."platforms.linux-x64"]
checksum = "sha256:1c9297be4a084eea7ecaedf93eb03d058d6faae29bbc57ecdaf5063921491599"
url = "https://github.com/BurntSushi/ripgrep/releases/download/15.1.0/ripgrep-15.1.0-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/BurntSushi/ripgrep/releases/assets/307306614"
[tools.ripgrep."platforms.linux-x64-baseline"]
checksum = "sha256:1c9297be4a084eea7ecaedf93eb03d058d6faae29bbc57ecdaf5063921491599"
url = "https://github.com/BurntSushi/ripgrep/releases/download/15.1.0/ripgrep-15.1.0-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/BurntSushi/ripgrep/releases/assets/307306614"
[tools.ripgrep."platforms.linux-x64-musl"]
checksum = "sha256:1c9297be4a084eea7ecaedf93eb03d058d6faae29bbc57ecdaf5063921491599"
url = "https://github.com/BurntSushi/ripgrep/releases/download/15.1.0/ripgrep-15.1.0-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/BurntSushi/ripgrep/releases/assets/307306614"
[tools.ripgrep."platforms.linux-x64-musl-baseline"]
checksum = "sha256:1c9297be4a084eea7ecaedf93eb03d058d6faae29bbc57ecdaf5063921491599"
url = "https://github.com/BurntSushi/ripgrep/releases/download/15.1.0/ripgrep-15.1.0-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/BurntSushi/ripgrep/releases/assets/307306614"
[tools.ripgrep."platforms.macos-arm64"]
checksum = "sha256:378e973289176ca0c6054054ee7f631a065874a352bf43f0fa60ef079b6ba715"
url = "https://github.com/BurntSushi/ripgrep/releases/download/15.1.0/ripgrep-15.1.0-aarch64-apple-darwin.tar.gz"
url_api = "https://api.github.com/repos/BurntSushi/ripgrep/releases/assets/307305438"
[tools.ripgrep."platforms.windows-x64"]
checksum = "sha256:124510b94b6baa3380d051fdf4650eaa80a302c876d611e9dba0b2e18d87493a"
url = "https://github.com/BurntSushi/ripgrep/releases/download/15.1.0/ripgrep-15.1.0-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/BurntSushi/ripgrep/releases/assets/307305871"
[tools.ripgrep."platforms.windows-x64-baseline"]
checksum = "sha256:124510b94b6baa3380d051fdf4650eaa80a302c876d611e9dba0b2e18d87493a"
url = "https://github.com/BurntSushi/ripgrep/releases/download/15.1.0/ripgrep-15.1.0-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/BurntSushi/ripgrep/releases/assets/307305871"
[[tools.shellcheck]]
version = "0.11.0"
backend = "aqua:koalaman/shellcheck"
[tools.shellcheck."platforms.linux-arm64"]
checksum = "sha256:12b331c1d2db6b9eb13cfca64306b1b157a86eb69db83023e261eaa7e7c14588"
url = "https://github.com/koalaman/shellcheck/releases/download/v0.11.0/shellcheck-v0.11.0.linux.aarch64.tar.xz"
url_api = "https://api.github.com/repos/koalaman/shellcheck/releases/assets/279056934"
[tools.shellcheck."platforms.linux-arm64-musl"]
checksum = "sha256:12b331c1d2db6b9eb13cfca64306b1b157a86eb69db83023e261eaa7e7c14588"
url = "https://github.com/koalaman/shellcheck/releases/download/v0.11.0/shellcheck-v0.11.0.linux.aarch64.tar.xz"
url_api = "https://api.github.com/repos/koalaman/shellcheck/releases/assets/279056934"
[tools.shellcheck."platforms.linux-x64"]
checksum = "sha256:8c3be12b05d5c177a04c29e3c78ce89ac86f1595681cab149b65b97c4e227198"
url = "https://github.com/koalaman/shellcheck/releases/download/v0.11.0/shellcheck-v0.11.0.linux.x86_64.tar.xz"
url_api = "https://api.github.com/repos/koalaman/shellcheck/releases/assets/279056942"
[tools.shellcheck."platforms.linux-x64-baseline"]
checksum = "sha256:8c3be12b05d5c177a04c29e3c78ce89ac86f1595681cab149b65b97c4e227198"
url = "https://github.com/koalaman/shellcheck/releases/download/v0.11.0/shellcheck-v0.11.0.linux.x86_64.tar.xz"
url_api = "https://api.github.com/repos/koalaman/shellcheck/releases/assets/279056942"
[tools.shellcheck."platforms.linux-x64-musl"]
checksum = "sha256:8c3be12b05d5c177a04c29e3c78ce89ac86f1595681cab149b65b97c4e227198"
url = "https://github.com/koalaman/shellcheck/releases/download/v0.11.0/shellcheck-v0.11.0.linux.x86_64.tar.xz"
url_api = "https://api.github.com/repos/koalaman/shellcheck/releases/assets/279056942"
[tools.shellcheck."platforms.linux-x64-musl-baseline"]
checksum = "sha256:8c3be12b05d5c177a04c29e3c78ce89ac86f1595681cab149b65b97c4e227198"
url = "https://github.com/koalaman/shellcheck/releases/download/v0.11.0/shellcheck-v0.11.0.linux.x86_64.tar.xz"
url_api = "https://api.github.com/repos/koalaman/shellcheck/releases/assets/279056942"
[tools.shellcheck."platforms.macos-arm64"]
checksum = "sha256:56affdd8de5527894dca6dc3d7e0a99a873b0f004d7aabc30ae407d3f48b0a79"
url = "https://github.com/koalaman/shellcheck/releases/download/v0.11.0/shellcheck-v0.11.0.darwin.aarch64.tar.xz"
url_api = "https://api.github.com/repos/koalaman/shellcheck/releases/assets/279056932"
[tools.shellcheck."platforms.windows-x64"]
checksum = "sha256:8a4e35ab0b331c85d73567b12f2a444df187f483e5079ceffa6bda1faa2e740e"
url = "https://github.com/koalaman/shellcheck/releases/download/v0.11.0/shellcheck-v0.11.0.zip"
url_api = "https://api.github.com/repos/koalaman/shellcheck/releases/assets/279056944"
[tools.shellcheck."platforms.windows-x64-baseline"]
checksum = "sha256:8a4e35ab0b331c85d73567b12f2a444df187f483e5079ceffa6bda1faa2e740e"
url = "https://github.com/koalaman/shellcheck/releases/download/v0.11.0/shellcheck-v0.11.0.zip"
url_api = "https://api.github.com/repos/koalaman/shellcheck/releases/assets/279056944"
[[tools.shfmt]]
version = "3.13.1"
backend = "aqua:mvdan/sh"
[tools.shfmt."platforms.linux-arm64"]
checksum = "sha256:32d92acaa5cd8abb29fc49dac123dc412442d5713967819d8af2c29f1b3857c7"
url = "https://github.com/mvdan/sh/releases/download/v3.13.1/shfmt_v3.13.1_linux_arm64"
url_api = "https://api.github.com/repos/mvdan/sh/releases/assets/390322859"
[tools.shfmt."platforms.linux-arm64-musl"]
checksum = "sha256:32d92acaa5cd8abb29fc49dac123dc412442d5713967819d8af2c29f1b3857c7"
url = "https://github.com/mvdan/sh/releases/download/v3.13.1/shfmt_v3.13.1_linux_arm64"
url_api = "https://api.github.com/repos/mvdan/sh/releases/assets/390322859"
[tools.shfmt."platforms.linux-x64"]
checksum = "sha256:fb096c5d1ac6beabbdbaa2874d025badb03ee07929f0c9ff67563ce8c75398b1"
url = "https://github.com/mvdan/sh/releases/download/v3.13.1/shfmt_v3.13.1_linux_amd64"
url_api = "https://api.github.com/repos/mvdan/sh/releases/assets/390322866"
[tools.shfmt."platforms.linux-x64-baseline"]
checksum = "sha256:fb096c5d1ac6beabbdbaa2874d025badb03ee07929f0c9ff67563ce8c75398b1"
url = "https://github.com/mvdan/sh/releases/download/v3.13.1/shfmt_v3.13.1_linux_amd64"
url_api = "https://api.github.com/repos/mvdan/sh/releases/assets/390322866"
[tools.shfmt."platforms.linux-x64-musl"]
checksum = "sha256:fb096c5d1ac6beabbdbaa2874d025badb03ee07929f0c9ff67563ce8c75398b1"
url = "https://github.com/mvdan/sh/releases/download/v3.13.1/shfmt_v3.13.1_linux_amd64"
url_api = "https://api.github.com/repos/mvdan/sh/releases/assets/390322866"
[tools.shfmt."platforms.linux-x64-musl-baseline"]
checksum = "sha256:fb096c5d1ac6beabbdbaa2874d025badb03ee07929f0c9ff67563ce8c75398b1"
url = "https://github.com/mvdan/sh/releases/download/v3.13.1/shfmt_v3.13.1_linux_amd64"
url_api = "https://api.github.com/repos/mvdan/sh/releases/assets/390322866"
[tools.shfmt."platforms.macos-arm64"]
checksum = "sha256:9680526be4a66ea1ffe988ed08af58e1400fe1e4f4aef5bd88b20bb9b3da33f8"
url = "https://github.com/mvdan/sh/releases/download/v3.13.1/shfmt_v3.13.1_darwin_arm64"
url_api = "https://api.github.com/repos/mvdan/sh/releases/assets/390322881"
[tools.shfmt."platforms.windows-x64"]
checksum = "sha256:60cd368533d0ad73fa86d93d5bbf95ef40587245ce684ed138c1b31557b5fe97"
url = "https://github.com/mvdan/sh/releases/download/v3.13.1/shfmt_v3.13.1_windows_amd64.exe"
url_api = "https://api.github.com/repos/mvdan/sh/releases/assets/390322844"
[tools.shfmt."platforms.windows-x64-baseline"]
checksum = "sha256:60cd368533d0ad73fa86d93d5bbf95ef40587245ce684ed138c1b31557b5fe97"
url = "https://github.com/mvdan/sh/releases/download/v3.13.1/shfmt_v3.13.1_windows_amd64.exe"
url_api = "https://api.github.com/repos/mvdan/sh/releases/assets/390322844"
[[tools.sops]]
version = "3.13.1"
backend = "aqua:getsops/sops"
[tools.sops."platforms.linux-arm64"]
checksum = "sha256:19576fb1734dbf8fb77eda0cf0f3a2218f99bf4d33b814318e5e10d6babb9820"
url = "https://github.com/getsops/sops/releases/download/v3.13.1/sops-v3.13.1.linux.arm64"
url_api = "https://api.github.com/repos/getsops/sops/releases/assets/421868621"
[tools.sops."platforms.linux-arm64".provenance.slsa]
url = "https://github.com/getsops/sops/releases/download/v3.13.1/sops-v3.13.1.intoto.jsonl"
[tools.sops."platforms.linux-arm64-musl"]