-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathmise.lock
More file actions
1158 lines (928 loc) · 63.6 KB
/
Copy pathmise.lock
File metadata and controls
1158 lines (928 loc) · 63.6 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.jdx.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.37.0"
backend = "github:endevco/aube"
[tools.aube."platforms.linux-arm64"]
checksum = "sha256:63488ce5494e80343129e360a59528562a9c5a82d538d10774c3e2f7ae0d8734"
url = "https://github.com/jdx/aube/releases/download/v1.37.0/aube-v1.37.0-aarch64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/496820640"
provenance = "github-attestations"
[tools.aube."platforms.linux-arm64-musl"]
checksum = "sha256:ebd90cdd570e58af23e31f43b3708be4778505316c8a842ac69929c191361bf3"
url = "https://github.com/jdx/aube/releases/download/v1.37.0/aube-v1.37.0-aarch64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/496788139"
provenance = "github-attestations"
[tools.aube."platforms.linux-x64"]
checksum = "sha256:1775b37c4381bff2314c96635cac3eeb90b02bea0f33371e553a4431dc893546"
url = "https://github.com/jdx/aube/releases/download/v1.37.0/aube-v1.37.0-x86_64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/496796145"
provenance = "github-attestations"
provenance_verified = true
[tools.aube."platforms.linux-x64-baseline"]
checksum = "sha256:1775b37c4381bff2314c96635cac3eeb90b02bea0f33371e553a4431dc893546"
url = "https://github.com/jdx/aube/releases/download/v1.37.0/aube-v1.37.0-x86_64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/496796145"
provenance = "github-attestations"
[tools.aube."platforms.linux-x64-musl"]
checksum = "sha256:56f7b1978e66c6d5a80dc86c38c0b2c83e7019811524b41d941fdbf79b912a4c"
url = "https://github.com/jdx/aube/releases/download/v1.37.0/aube-v1.37.0-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/496794035"
provenance = "github-attestations"
[tools.aube."platforms.linux-x64-musl-baseline"]
checksum = "sha256:56f7b1978e66c6d5a80dc86c38c0b2c83e7019811524b41d941fdbf79b912a4c"
url = "https://github.com/jdx/aube/releases/download/v1.37.0/aube-v1.37.0-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/496794035"
provenance = "github-attestations"
[tools.aube."platforms.macos-arm64"]
checksum = "sha256:6fdc27e146e5d6a45abf60ef7cf2e83d5b7284acbba4cecf6237905bd528a916"
url = "https://github.com/jdx/aube/releases/download/v1.37.0/aube-v1.37.0-aarch64-apple-darwin.tar.gz"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/496852124"
provenance = "github-attestations"
[tools.aube."platforms.windows-x64"]
checksum = "sha256:7a264819a7c05d107ac72916f82209a183bfd26842b9528f1ca281bb32596c5e"
url = "https://github.com/jdx/aube/releases/download/v1.37.0/aube-v1.37.0-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/496805373"
provenance = "github-attestations"
[tools.aube."platforms.windows-x64-baseline"]
checksum = "sha256:7a264819a7c05d107ac72916f82209a183bfd26842b9528f1ca281bb32596c5e"
url = "https://github.com/jdx/aube/releases/download/v1.37.0/aube-v1.37.0-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/496805373"
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.21.1"
backend = "aqua:cargo-bins/cargo-binstall"
[tools.cargo-binstall."platforms.linux-arm64"]
checksum = "sha256:1dc2979f3c83aade9a1b4344589d14fafa63459b759222528d11419f5cca9cc2"
url = "https://github.com/cargo-bins/cargo-binstall/releases/download/v1.21.1/cargo-binstall-aarch64-unknown-linux-musl.tgz"
url_api = "https://api.github.com/repos/cargo-bins/cargo-binstall/releases/assets/489425352"
provenance = "github-attestations"
[tools.cargo-binstall."platforms.linux-arm64-musl"]
checksum = "sha256:1dc2979f3c83aade9a1b4344589d14fafa63459b759222528d11419f5cca9cc2"
url = "https://github.com/cargo-bins/cargo-binstall/releases/download/v1.21.1/cargo-binstall-aarch64-unknown-linux-musl.tgz"
url_api = "https://api.github.com/repos/cargo-bins/cargo-binstall/releases/assets/489425352"
provenance = "github-attestations"
[tools.cargo-binstall."platforms.linux-x64"]
checksum = "sha256:630c8f8803a686aa6779497f0f0fb51d49822fb5fc3c514d8ced33b34e338e6e"
url = "https://github.com/cargo-bins/cargo-binstall/releases/download/v1.21.1/cargo-binstall-x86_64-unknown-linux-musl.tgz"
url_api = "https://api.github.com/repos/cargo-bins/cargo-binstall/releases/assets/489425174"
provenance = "github-attestations"
[tools.cargo-binstall."platforms.linux-x64-baseline"]
checksum = "sha256:630c8f8803a686aa6779497f0f0fb51d49822fb5fc3c514d8ced33b34e338e6e"
url = "https://github.com/cargo-bins/cargo-binstall/releases/download/v1.21.1/cargo-binstall-x86_64-unknown-linux-musl.tgz"
url_api = "https://api.github.com/repos/cargo-bins/cargo-binstall/releases/assets/489425174"
provenance = "github-attestations"
[tools.cargo-binstall."platforms.linux-x64-musl"]
checksum = "sha256:630c8f8803a686aa6779497f0f0fb51d49822fb5fc3c514d8ced33b34e338e6e"
url = "https://github.com/cargo-bins/cargo-binstall/releases/download/v1.21.1/cargo-binstall-x86_64-unknown-linux-musl.tgz"
url_api = "https://api.github.com/repos/cargo-bins/cargo-binstall/releases/assets/489425174"
provenance = "github-attestations"
[tools.cargo-binstall."platforms.linux-x64-musl-baseline"]
checksum = "sha256:630c8f8803a686aa6779497f0f0fb51d49822fb5fc3c514d8ced33b34e338e6e"
url = "https://github.com/cargo-bins/cargo-binstall/releases/download/v1.21.1/cargo-binstall-x86_64-unknown-linux-musl.tgz"
url_api = "https://api.github.com/repos/cargo-bins/cargo-binstall/releases/assets/489425174"
provenance = "github-attestations"
[tools.cargo-binstall."platforms.macos-arm64"]
checksum = "sha256:bd03935f1a6d652647f6d42a2cd39396a55094ffddc65bed0debebfe32feea43"
url = "https://github.com/cargo-bins/cargo-binstall/releases/download/v1.21.1/cargo-binstall-aarch64-apple-darwin.zip"
url_api = "https://api.github.com/repos/cargo-bins/cargo-binstall/releases/assets/489425460"
provenance = "github-attestations"
[tools.cargo-binstall."platforms.windows-x64"]
checksum = "sha256:27aee4e73cd8b1d479730cb9cdbd89b1114453a135689d4ee1a7e7f913f0ffe1"
url = "https://github.com/cargo-bins/cargo-binstall/releases/download/v1.21.1/cargo-binstall-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/cargo-bins/cargo-binstall/releases/assets/489425215"
provenance = "github-attestations"
[tools.cargo-binstall."platforms.windows-x64-baseline"]
checksum = "sha256:27aee4e73cd8b1d479730cb9cdbd89b1114453a135689d4ee1a7e7f913f0ffe1"
url = "https://github.com/cargo-bins/cargo-binstall/releases/download/v1.21.1/cargo-binstall-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/cargo-bins/cargo-binstall/releases/assets/489425215"
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.communique]]
version = "1.2.4"
backend = "github:jdx/communique"
[tools.communique."platforms.linux-arm64"]
checksum = "sha256:6dc141afb8238f3c7cf9495865cd961ddc94f8a40583f4748ae5e7030c2d5999"
url = "https://github.com/jdx/communique/releases/download/v1.2.4/communique-aarch64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/communique/releases/assets/489909180"
provenance = "github-attestations"
[tools.communique."platforms.linux-arm64-musl"]
checksum = "sha256:29274114be5a387167683ed7a7d8bdc8fa2f11381bb4a5216ee4bb783950986d"
url = "https://github.com/jdx/communique/releases/download/v1.2.4/communique-aarch64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/communique/releases/assets/489909098"
provenance = "github-attestations"
[tools.communique."platforms.linux-x64"]
checksum = "sha256:114b642d15f3360bda73a256f3c76b7cec50e6c92e19463ca6122bbd7c7a85e8"
url = "https://github.com/jdx/communique/releases/download/v1.2.4/communique-x86_64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/communique/releases/assets/489909201"
provenance = "github-attestations"
provenance_verified = true
[tools.communique."platforms.linux-x64-baseline"]
checksum = "sha256:114b642d15f3360bda73a256f3c76b7cec50e6c92e19463ca6122bbd7c7a85e8"
url = "https://github.com/jdx/communique/releases/download/v1.2.4/communique-x86_64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/communique/releases/assets/489909201"
provenance = "github-attestations"
[tools.communique."platforms.linux-x64-musl"]
checksum = "sha256:f555ad0d997511d2a0c591429dab3bf814747fab0cb989593fdd0f3a2f7da822"
url = "https://github.com/jdx/communique/releases/download/v1.2.4/communique-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/communique/releases/assets/489909103"
provenance = "github-attestations"
[tools.communique."platforms.linux-x64-musl-baseline"]
checksum = "sha256:f555ad0d997511d2a0c591429dab3bf814747fab0cb989593fdd0f3a2f7da822"
url = "https://github.com/jdx/communique/releases/download/v1.2.4/communique-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/communique/releases/assets/489909103"
provenance = "github-attestations"
[tools.communique."platforms.macos-arm64"]
checksum = "sha256:15fd88593edc83ac50020818e17d0ccefc048d9179bdfd28329710476d3ae6b9"
url = "https://github.com/jdx/communique/releases/download/v1.2.4/communique-aarch64-apple-darwin.tar.gz"
url_api = "https://api.github.com/repos/jdx/communique/releases/assets/489909561"
provenance = "github-attestations"
[tools.communique."platforms.windows-x64"]
checksum = "sha256:8b8667d205bf61b229a17b36bdd05c316d9c55f0cc985acf4fc0cf85b8a046a3"
url = "https://github.com/jdx/communique/releases/download/v1.2.4/communique-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/jdx/communique/releases/assets/489910283"
provenance = "github-attestations"
[tools.communique."platforms.windows-x64-baseline"]
checksum = "sha256:8b8667d205bf61b229a17b36bdd05c316d9c55f0cc985acf4fc0cf85b8a046a3"
url = "https://github.com/jdx/communique/releases/download/v1.2.4/communique-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/jdx/communique/releases/assets/489910283"
provenance = "github-attestations"
[[tools.gh]]
version = "2.97.0"
backend = "aqua:cli/cli"
[tools.gh."platforms.linux-arm64"]
checksum = "sha256:73ea440ecad9c9e284429997ee6f93577bc6f7bc6fba357ef62c53ad8fb641a5"
url = "https://github.com/cli/cli/releases/download/v2.97.0/gh_2.97.0_linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/cli/cli/releases/assets/496108278"
provenance = "github-attestations"
[tools.gh."platforms.linux-arm64-musl"]
checksum = "sha256:73ea440ecad9c9e284429997ee6f93577bc6f7bc6fba357ef62c53ad8fb641a5"
url = "https://github.com/cli/cli/releases/download/v2.97.0/gh_2.97.0_linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/cli/cli/releases/assets/496108278"
provenance = "github-attestations"
[tools.gh."platforms.linux-x64"]
checksum = "sha256:a2c9b8497e1f85b1ad0dfcb78b5a622e098801b8e461e459e88e1ee12f018112"
url = "https://github.com/cli/cli/releases/download/v2.97.0/gh_2.97.0_linux_amd64.tar.gz"
url_api = "https://api.github.com/repos/cli/cli/releases/assets/496108269"
provenance = "github-attestations"
[tools.gh."platforms.linux-x64-baseline"]
checksum = "sha256:a2c9b8497e1f85b1ad0dfcb78b5a622e098801b8e461e459e88e1ee12f018112"
url = "https://github.com/cli/cli/releases/download/v2.97.0/gh_2.97.0_linux_amd64.tar.gz"
url_api = "https://api.github.com/repos/cli/cli/releases/assets/496108269"
provenance = "github-attestations"
[tools.gh."platforms.linux-x64-musl"]
checksum = "sha256:a2c9b8497e1f85b1ad0dfcb78b5a622e098801b8e461e459e88e1ee12f018112"
url = "https://github.com/cli/cli/releases/download/v2.97.0/gh_2.97.0_linux_amd64.tar.gz"
url_api = "https://api.github.com/repos/cli/cli/releases/assets/496108269"
provenance = "github-attestations"
[tools.gh."platforms.linux-x64-musl-baseline"]
checksum = "sha256:a2c9b8497e1f85b1ad0dfcb78b5a622e098801b8e461e459e88e1ee12f018112"
url = "https://github.com/cli/cli/releases/download/v2.97.0/gh_2.97.0_linux_amd64.tar.gz"
url_api = "https://api.github.com/repos/cli/cli/releases/assets/496108269"
provenance = "github-attestations"
[tools.gh."platforms.macos-arm64"]
checksum = "sha256:a58b8fd77b417a38f47a0b54d1370c59b0fcdb324ccc9ca002b0998f7c4c999e"
url = "https://github.com/cli/cli/releases/download/v2.97.0/gh_2.97.0_macOS_arm64.zip"
url_api = "https://api.github.com/repos/cli/cli/releases/assets/496108298"
provenance = "github-attestations"
[tools.gh."platforms.windows-x64"]
checksum = "sha256:35d7fe05c4dd1411ffda1e73dfc7c6f44b75c936ca51fa6595c657fdc0350cec"
url = "https://github.com/cli/cli/releases/download/v2.97.0/gh_2.97.0_windows_amd64.zip"
url_api = "https://api.github.com/repos/cli/cli/releases/assets/496108319"
provenance = "github-attestations"
[tools.gh."platforms.windows-x64-baseline"]
checksum = "sha256:35d7fe05c4dd1411ffda1e73dfc7c6f44b75c936ca51fa6595c657fdc0350cec"
url = "https://github.com/cli/cli/releases/download/v2.97.0/gh_2.97.0_windows_amd64.zip"
url_api = "https://api.github.com/repos/cli/cli/releases/assets/496108319"
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:jdx/tak"]]
version = "0.0.5"
backend = "github:jdx/tak"
[tools."github:jdx/tak"."platforms.linux-arm64"]
checksum = "sha256:cadba79ad2b23f172aa90ba4835b8eba2cd11978f266ba48d42b6fd7634c2157"
url = "https://github.com/jdx/tak/releases/download/v0.0.5/tak-aarch64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/tak/releases/assets/491688656"
provenance = "github-attestations"
[tools."github:jdx/tak"."platforms.linux-arm64-musl"]
checksum = "sha256:a0d5ad80eed1a92a61cad7c3dd23ec91cd05801ebaa7680b028b8a09040a781f"
url = "https://github.com/jdx/tak/releases/download/v0.0.5/tak-aarch64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/tak/releases/assets/491688660"
provenance = "github-attestations"
[tools."github:jdx/tak"."platforms.linux-x64"]
checksum = "sha256:1430efa4e44f58921e27db931820187bbac297b33c0dd7c11ae5e382fa11b93e"
url = "https://github.com/jdx/tak/releases/download/v0.0.5/tak-x86_64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/tak/releases/assets/491688672"
provenance = "github-attestations"
provenance_verified = true
[tools."github:jdx/tak"."platforms.linux-x64-baseline"]
checksum = "sha256:1430efa4e44f58921e27db931820187bbac297b33c0dd7c11ae5e382fa11b93e"
url = "https://github.com/jdx/tak/releases/download/v0.0.5/tak-x86_64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/tak/releases/assets/491688672"
provenance = "github-attestations"
[tools."github:jdx/tak"."platforms.linux-x64-musl"]
checksum = "sha256:30eb4cb03c50fa55d993c20a31d975d6a230fbdad296a3fc5cc6add769125a8f"
url = "https://github.com/jdx/tak/releases/download/v0.0.5/tak-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/tak/releases/assets/491688673"
provenance = "github-attestations"
[tools."github:jdx/tak"."platforms.linux-x64-musl-baseline"]
checksum = "sha256:30eb4cb03c50fa55d993c20a31d975d6a230fbdad296a3fc5cc6add769125a8f"
url = "https://github.com/jdx/tak/releases/download/v0.0.5/tak-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/tak/releases/assets/491688673"
provenance = "github-attestations"
[tools."github:jdx/tak"."platforms.macos-arm64"]
checksum = "sha256:22403041e281365efd5efcd041ecf20dd364c21654f4745f26731d7b77e1d29d"
url = "https://github.com/jdx/tak/releases/download/v0.0.5/tak-aarch64-apple-darwin.tar.gz"
url_api = "https://api.github.com/repos/jdx/tak/releases/assets/491688659"
provenance = "github-attestations"
[tools."github:jdx/tak"."platforms.windows-x64"]
checksum = "sha256:990f674bc67dd6335f817f9c201cdb99f68d4560034c46d57f3c8794460479da"
url = "https://github.com/jdx/tak/releases/download/v0.0.5/tak-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/jdx/tak/releases/assets/491688671"
provenance = "github-attestations"
[tools."github:jdx/tak"."platforms.windows-x64-baseline"]
checksum = "sha256:990f674bc67dd6335f817f9c201cdb99f68d4560034c46d57f3c8794460479da"
url = "https://github.com/jdx/tak/releases/download/v0.0.5/tak-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/jdx/tak/releases/assets/491688671"
provenance = "github-attestations"
[[tools.hk]]
version = "1.54.0"
backend = "aqua:jdx/hk"
[tools.hk."platforms.linux-arm64"]
checksum = "sha256:79458d7464bbdf63cd578ef9ece71003d3e53a993f9fa630888b93d3ae24dd79"
url = "https://github.com/jdx/hk/releases/download/v1.54.0/hk-aarch64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/496037128"
[tools.hk."platforms.linux-arm64-musl"]
checksum = "sha256:c1ad33f83265363440c7fc77656e604532049f038c42d7b8924fc43e5a3b935d"
url = "https://github.com/jdx/hk/releases/download/v1.54.0/hk-aarch64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/496037132"
[tools.hk."platforms.linux-x64"]
checksum = "sha256:467f691713b1afbeada4df662bd44696405cd987a5c7f64fee0fe71399628d0c"
url = "https://github.com/jdx/hk/releases/download/v1.54.0/hk-x86_64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/496037136"
[tools.hk."platforms.linux-x64-baseline"]
checksum = "sha256:467f691713b1afbeada4df662bd44696405cd987a5c7f64fee0fe71399628d0c"
url = "https://github.com/jdx/hk/releases/download/v1.54.0/hk-x86_64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/496037136"
[tools.hk."platforms.linux-x64-musl"]
checksum = "sha256:ddce69611ce32a08b481dd3ccd5c700b1d535d12c86be784bc6d74b1d6256546"
url = "https://github.com/jdx/hk/releases/download/v1.54.0/hk-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/496037135"
[tools.hk."platforms.linux-x64-musl-baseline"]
checksum = "sha256:ddce69611ce32a08b481dd3ccd5c700b1d535d12c86be784bc6d74b1d6256546"
url = "https://github.com/jdx/hk/releases/download/v1.54.0/hk-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/496037135"
[tools.hk."platforms.macos-arm64"]
checksum = "sha256:54e47c56f64916e63004b68ae848637e3e90d06f89e3ae8de985ebc35fd9f7e7"
url = "https://github.com/jdx/hk/releases/download/v1.54.0/hk-aarch64-apple-darwin.tar.gz"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/496037130"
[tools.hk."platforms.windows-x64"]
checksum = "sha256:ab0f65942c89c72b322c700bf427926f54db84fd2827121eab03287144d2ec64"
url = "https://github.com/jdx/hk/releases/download/v1.54.0/hk-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/496037131"
[tools.hk."platforms.windows-x64-baseline"]
checksum = "sha256:ab0f65942c89c72b322c700bf427926f54db84fd2827121eab03287144d2ec64"
url = "https://github.com/jdx/hk/releases/download/v1.54.0/hk-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/496037131"
[[tools.jq]]
version = "1.8.2"
backend = "aqua:jqlang/jq"
[tools.jq."platforms.linux-arm64"]
checksum = "sha256:8b85c817833814ddca00a144c33705546355afccf0cf39b188f3cdb48b852309"
url = "https://github.com/jqlang/jq/releases/download/jq-1.8.2/jq-linux-arm64"
url_api = "https://api.github.com/repos/jqlang/jq/releases/assets/453012756"
provenance = "github-attestations"
[tools.jq."platforms.linux-arm64-musl"]
checksum = "sha256:8b85c817833814ddca00a144c33705546355afccf0cf39b188f3cdb48b852309"
url = "https://github.com/jqlang/jq/releases/download/jq-1.8.2/jq-linux-arm64"
url_api = "https://api.github.com/repos/jqlang/jq/releases/assets/453012756"
provenance = "github-attestations"
[tools.jq."platforms.linux-x64"]
checksum = "sha256:b1c22172dd303f3be49e935aa56aa48a8b7a46e0bc838b4997d3bb451495870f"
url = "https://github.com/jqlang/jq/releases/download/jq-1.8.2/jq-linux-amd64"
url_api = "https://api.github.com/repos/jqlang/jq/releases/assets/453012752"
provenance = "github-attestations"
[tools.jq."platforms.linux-x64-baseline"]
checksum = "sha256:b1c22172dd303f3be49e935aa56aa48a8b7a46e0bc838b4997d3bb451495870f"
url = "https://github.com/jqlang/jq/releases/download/jq-1.8.2/jq-linux-amd64"
url_api = "https://api.github.com/repos/jqlang/jq/releases/assets/453012752"
provenance = "github-attestations"
[tools.jq."platforms.linux-x64-musl"]
checksum = "sha256:b1c22172dd303f3be49e935aa56aa48a8b7a46e0bc838b4997d3bb451495870f"
url = "https://github.com/jqlang/jq/releases/download/jq-1.8.2/jq-linux-amd64"
url_api = "https://api.github.com/repos/jqlang/jq/releases/assets/453012752"
provenance = "github-attestations"
[tools.jq."platforms.linux-x64-musl-baseline"]
checksum = "sha256:b1c22172dd303f3be49e935aa56aa48a8b7a46e0bc838b4997d3bb451495870f"
url = "https://github.com/jqlang/jq/releases/download/jq-1.8.2/jq-linux-amd64"
url_api = "https://api.github.com/repos/jqlang/jq/releases/assets/453012752"
provenance = "github-attestations"
[tools.jq."platforms.macos-arm64"]
checksum = "sha256:2d75340ba57a4b4b4c8708a21c2dc8e958a48aaa8bba13b27f77f6e4c0eca07e"
url = "https://github.com/jqlang/jq/releases/download/jq-1.8.2/jq-macos-arm64"
url_api = "https://api.github.com/repos/jqlang/jq/releases/assets/453012783"
provenance = "github-attestations"
[tools.jq."platforms.windows-x64"]
checksum = "sha256:a6fc67fedaf9128a3309a1e2ebb8b986aeccf70122ee46d2cb4849e423f0c627"
url = "https://github.com/jqlang/jq/releases/download/jq-1.8.2/jq-windows-amd64.exe"
url_api = "https://api.github.com/repos/jqlang/jq/releases/assets/453012788"
provenance = "github-attestations"
[tools.jq."platforms.windows-x64-baseline"]
checksum = "sha256:a6fc67fedaf9128a3309a1e2ebb8b986aeccf70122ee46d2cb4849e423f0c627"
url = "https://github.com/jqlang/jq/releases/download/jq-1.8.2/jq-windows-amd64.exe"
url_api = "https://api.github.com/repos/jqlang/jq/releases/assets/453012788"
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.18.1"
backend = "core:node"
[tools.node."platforms.linux-arm64"]
checksum = "sha256:df224555a083b918e46260cc969838501b9f9a87140c1195e5b9597b56d5dae2"
url = "https://nodejs.org/dist/v24.18.1/node-v24.18.1-linux-arm64.tar.gz"
[tools.node."platforms.linux-arm64-musl"]
checksum = "sha256:ae1b6457edb875fd98130b37c853e51a53ac0cc40850ecccd490b61c5a3558fa"
url = "https://unofficial-builds.nodejs.org/download/release/v24.18.1/node-v24.18.1-linux-arm64-musl.tar.gz"
[tools.node."platforms.linux-x64"]
checksum = "sha256:9f5eb6ac21845a66c493c91a253b1da32fd684e89e9b7202d4936982336be4ca"
url = "https://nodejs.org/dist/v24.18.1/node-v24.18.1-linux-x64.tar.gz"
[tools.node."platforms.linux-x64-baseline"]
checksum = "sha256:9f5eb6ac21845a66c493c91a253b1da32fd684e89e9b7202d4936982336be4ca"
url = "https://nodejs.org/dist/v24.18.1/node-v24.18.1-linux-x64.tar.gz"
[tools.node."platforms.linux-x64-musl"]
checksum = "sha256:696979caef92505ad7566a3674ca9a93d8558e282f34e7899181c0321821ae5f"
url = "https://unofficial-builds.nodejs.org/download/release/v24.18.1/node-v24.18.1-linux-x64-musl.tar.gz"
[tools.node."platforms.linux-x64-musl-baseline"]
checksum = "sha256:696979caef92505ad7566a3674ca9a93d8558e282f34e7899181c0321821ae5f"
url = "https://unofficial-builds.nodejs.org/download/release/v24.18.1/node-v24.18.1-linux-x64-musl.tar.gz"
[tools.node."platforms.macos-arm64"]
checksum = "sha256:eb02f7fab96d3d67de40c5ec8566096fcb4c2026728787683ae5a97eb612b941"
url = "https://nodejs.org/dist/v24.18.1/node-v24.18.1-darwin-arm64.tar.gz"
[tools.node."platforms.windows-x64"]
checksum = "sha256:ec56b84a7551893ab2324ebdfdc4ab974a63b4781162600b68a1293cc3e53765"
url = "https://nodejs.org/dist/v24.18.1/node-v24.18.1-win-x64.zip"
[tools.node."platforms.windows-x64-baseline"]
checksum = "sha256:ec56b84a7551893ab2324ebdfdc4ab974a63b4781162600b68a1293cc3e53765"
url = "https://nodejs.org/dist/v24.18.1/node-v24.18.1-win-x64.zip"
[[tools."npm:ajv-cli"]]
version = "5.0.0"
backend = "npm:ajv-cli"
[[tools."npm:markdownlint-cli"]]
version = "0.49.1"
backend = "npm:markdownlint-cli"
[[tools.pkl]]
version = "0.32.1"
backend = "aqua:apple/pkl"
[tools.pkl."platforms.linux-arm64"]
checksum = "sha256:a76d2dd47da435a8f911b0347373f47c7e59ea54fb75ff846d20b8df10dba058"
url = "https://github.com/apple/pkl/releases/download/0.32.1/pkl-linux-aarch64"
url_api = "https://api.github.com/repos/apple/pkl/releases/assets/487426568"
[tools.pkl."platforms.linux-arm64-musl"]
checksum = "sha256:a76d2dd47da435a8f911b0347373f47c7e59ea54fb75ff846d20b8df10dba058"
url = "https://github.com/apple/pkl/releases/download/0.32.1/pkl-linux-aarch64"
url_api = "https://api.github.com/repos/apple/pkl/releases/assets/487426568"
[tools.pkl."platforms.linux-x64"]
checksum = "sha256:3180b62da95c0cad1d904e9bb6c5f4a8f9032413c21e53194bb91ff1ee5f3211"
url = "https://github.com/apple/pkl/releases/download/0.32.1/pkl-linux-amd64"
url_api = "https://api.github.com/repos/apple/pkl/releases/assets/487426567"
[tools.pkl."platforms.linux-x64-baseline"]
checksum = "sha256:3180b62da95c0cad1d904e9bb6c5f4a8f9032413c21e53194bb91ff1ee5f3211"
url = "https://github.com/apple/pkl/releases/download/0.32.1/pkl-linux-amd64"
url_api = "https://api.github.com/repos/apple/pkl/releases/assets/487426567"
[tools.pkl."platforms.linux-x64-musl"]
checksum = "sha256:3180b62da95c0cad1d904e9bb6c5f4a8f9032413c21e53194bb91ff1ee5f3211"
url = "https://github.com/apple/pkl/releases/download/0.32.1/pkl-linux-amd64"
url_api = "https://api.github.com/repos/apple/pkl/releases/assets/487426567"
[tools.pkl."platforms.linux-x64-musl-baseline"]
checksum = "sha256:3180b62da95c0cad1d904e9bb6c5f4a8f9032413c21e53194bb91ff1ee5f3211"
url = "https://github.com/apple/pkl/releases/download/0.32.1/pkl-linux-amd64"
url_api = "https://api.github.com/repos/apple/pkl/releases/assets/487426567"
[tools.pkl."platforms.macos-arm64"]
checksum = "sha256:563eb51c9a20b16a3625464ed745c675ed9750381f2126722696a0d7cac1d9d3"
url = "https://github.com/apple/pkl/releases/download/0.32.1/pkl-macos-aarch64"
url_api = "https://api.github.com/repos/apple/pkl/releases/assets/487426570"
[tools.pkl."platforms.windows-x64"]
checksum = "sha256:8550a00fcf027335e42c5e2cd553b88e98845408cb1880b3e3d1860caf46d22a"
url = "https://github.com/apple/pkl/releases/download/0.32.1/pkl-windows-amd64.exe"
url_api = "https://api.github.com/repos/apple/pkl/releases/assets/487426668"
[tools.pkl."platforms.windows-x64-baseline"]
checksum = "sha256:8550a00fcf027335e42c5e2cd553b88e98845408cb1880b3e3d1860caf46d22a"
url = "https://github.com/apple/pkl/releases/download/0.32.1/pkl-windows-amd64.exe"
url_api = "https://api.github.com/repos/apple/pkl/releases/assets/487426668"
[[tools.prettier]]
version = "3.9.6"
backend = "npm:prettier"
[[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.3"
backend = "aqua:getsops/sops"
[tools.sops."platforms.linux-arm64"]
checksum = "sha256:53b0abacd38ef1b12a66d6c100956691b9cefce018d91f81e73ddf7438b94d77"
url = "https://github.com/getsops/sops/releases/download/v3.13.3/sops-v3.13.3.linux.arm64"
url_api = "https://api.github.com/repos/getsops/sops/releases/assets/486808229"
[tools.sops."platforms.linux-arm64".provenance.slsa]
url = "https://github.com/getsops/sops/releases/download/v3.13.3/sops-v3.13.3.intoto.jsonl"
[tools.sops."platforms.linux-arm64-musl"]
checksum = "sha256:53b0abacd38ef1b12a66d6c100956691b9cefce018d91f81e73ddf7438b94d77"
url = "https://github.com/getsops/sops/releases/download/v3.13.3/sops-v3.13.3.linux.arm64"
url_api = "https://api.github.com/repos/getsops/sops/releases/assets/486808229"
[tools.sops."platforms.linux-arm64-musl".provenance.slsa]
url = "https://github.com/getsops/sops/releases/download/v3.13.3/sops-v3.13.3.intoto.jsonl"
[tools.sops."platforms.linux-x64"]
checksum = "sha256:e5bec3346a873ae91d871550f3e698c1aad962aff462a080e40f25fde17fef6b"
url = "https://github.com/getsops/sops/releases/download/v3.13.3/sops-v3.13.3.linux.amd64"
url_api = "https://api.github.com/repos/getsops/sops/releases/assets/486808201"
[tools.sops."platforms.linux-x64".provenance.slsa]
url = "https://github.com/getsops/sops/releases/download/v3.13.3/sops-v3.13.3.intoto.jsonl"
[tools.sops."platforms.linux-x64-baseline"]
checksum = "sha256:e5bec3346a873ae91d871550f3e698c1aad962aff462a080e40f25fde17fef6b"
url = "https://github.com/getsops/sops/releases/download/v3.13.3/sops-v3.13.3.linux.amd64"
url_api = "https://api.github.com/repos/getsops/sops/releases/assets/486808201"
[tools.sops."platforms.linux-x64-baseline".provenance.slsa]
url = "https://github.com/getsops/sops/releases/download/v3.13.3/sops-v3.13.3.intoto.jsonl"
[tools.sops."platforms.linux-x64-musl"]
checksum = "sha256:e5bec3346a873ae91d871550f3e698c1aad962aff462a080e40f25fde17fef6b"
url = "https://github.com/getsops/sops/releases/download/v3.13.3/sops-v3.13.3.linux.amd64"
url_api = "https://api.github.com/repos/getsops/sops/releases/assets/486808201"
[tools.sops."platforms.linux-x64-musl".provenance.slsa]
url = "https://github.com/getsops/sops/releases/download/v3.13.3/sops-v3.13.3.intoto.jsonl"
[tools.sops."platforms.linux-x64-musl-baseline"]
checksum = "sha256:e5bec3346a873ae91d871550f3e698c1aad962aff462a080e40f25fde17fef6b"
url = "https://github.com/getsops/sops/releases/download/v3.13.3/sops-v3.13.3.linux.amd64"
url_api = "https://api.github.com/repos/getsops/sops/releases/assets/486808201"
[tools.sops."platforms.linux-x64-musl-baseline".provenance.slsa]
url = "https://github.com/getsops/sops/releases/download/v3.13.3/sops-v3.13.3.intoto.jsonl"
[tools.sops."platforms.macos-arm64"]
checksum = "sha256:b97c0d434aab577dc40310e8d22ff9e45eef4c80638ab978daae9b4681c59286"
url = "https://github.com/getsops/sops/releases/download/v3.13.3/sops-v3.13.3.darwin.arm64"
url_api = "https://api.github.com/repos/getsops/sops/releases/assets/486808198"
[tools.sops."platforms.macos-arm64".provenance.slsa]
url = "https://github.com/getsops/sops/releases/download/v3.13.3/sops-v3.13.3.intoto.jsonl"
[tools.sops."platforms.windows-x64"]
checksum = "sha256:a4a9a398858fe8b2ef72d9686d930bf7c5cece9be74ad83ac3b53cfdd70e6b1c"
url = "https://github.com/getsops/sops/releases/download/v3.13.3/sops-v3.13.3.amd64.exe"
url_api = "https://api.github.com/repos/getsops/sops/releases/assets/486808200"
[tools.sops."platforms.windows-x64".provenance.slsa]
url = "https://github.com/getsops/sops/releases/download/v3.13.3/sops-v3.13.3.intoto.jsonl"
[tools.sops."platforms.windows-x64-baseline"]
checksum = "sha256:a4a9a398858fe8b2ef72d9686d930bf7c5cece9be74ad83ac3b53cfdd70e6b1c"
url = "https://github.com/getsops/sops/releases/download/v3.13.3/sops-v3.13.3.amd64.exe"
url_api = "https://api.github.com/repos/getsops/sops/releases/assets/486808200"
[tools.sops."platforms.windows-x64-baseline".provenance.slsa]
url = "https://github.com/getsops/sops/releases/download/v3.13.3/sops-v3.13.3.intoto.jsonl"
[[tools.stylua]]
version = "2.5.2"
backend = "aqua:JohnnyMorganz/StyLua"
[tools.stylua."platforms.linux-arm64"]
checksum = "sha256:0ef2ebf0b7e5a652b65c4cb96c6d9ffb3981a98547de3c764465bbf54a8d761a"
url = "https://github.com/JohnnyMorganz/StyLua/releases/download/v2.5.2/stylua-linux-aarch64.zip"
url_api = "https://api.github.com/repos/JohnnyMorganz/StyLua/releases/assets/421900973"
[tools.stylua."platforms.linux-arm64-musl"]
checksum = "sha256:b948df6b4bae41af9a70948174372f96a3c14d44e3e017288701539f3db8fb75"
url = "https://github.com/JohnnyMorganz/StyLua/releases/download/v2.5.2/stylua-linux-aarch64-musl.zip"
url_api = "https://api.github.com/repos/JohnnyMorganz/StyLua/releases/assets/421900982"
[tools.stylua."platforms.linux-x64"]
checksum = "sha256:ca6f1cf52eaf69e6632b81acef9c197aa24b85eb30d2455a35e7dbe28ae77c72"
url = "https://github.com/JohnnyMorganz/StyLua/releases/download/v2.5.2/stylua-linux-x86_64-musl.zip"
url_api = "https://api.github.com/repos/JohnnyMorganz/StyLua/releases/assets/421901066"
[tools.stylua."platforms.linux-x64-baseline"]
checksum = "sha256:ca6f1cf52eaf69e6632b81acef9c197aa24b85eb30d2455a35e7dbe28ae77c72"
url = "https://github.com/JohnnyMorganz/StyLua/releases/download/v2.5.2/stylua-linux-x86_64-musl.zip"
url_api = "https://api.github.com/repos/JohnnyMorganz/StyLua/releases/assets/421901066"
[tools.stylua."platforms.linux-x64-musl"]
checksum = "sha256:ca6f1cf52eaf69e6632b81acef9c197aa24b85eb30d2455a35e7dbe28ae77c72"
url = "https://github.com/JohnnyMorganz/StyLua/releases/download/v2.5.2/stylua-linux-x86_64-musl.zip"
url_api = "https://api.github.com/repos/JohnnyMorganz/StyLua/releases/assets/421901066"
[tools.stylua."platforms.linux-x64-musl-baseline"]