-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathmise.lock
More file actions
1089 lines (871 loc) · 59.5 KB
/
Copy pathmise.lock
File metadata and controls
1089 lines (871 loc) · 59.5 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.apko]]
version = "1.2.31"
backend = "aqua:chainguard-dev/apko"
[tools.apko."platforms.linux-arm64"]
checksum = "sha256:587cdd0c3c8a22012909cd90e389474d07f4351eeea02962ed5fe227d57ea716"
url = "https://github.com/chainguard-dev/apko/releases/download/v1.2.31/apko_1.2.31_linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/chainguard-dev/apko/releases/assets/499430055"
[tools.apko."platforms.linux-arm64-musl"]
checksum = "sha256:587cdd0c3c8a22012909cd90e389474d07f4351eeea02962ed5fe227d57ea716"
url = "https://github.com/chainguard-dev/apko/releases/download/v1.2.31/apko_1.2.31_linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/chainguard-dev/apko/releases/assets/499430055"
[tools.apko."platforms.linux-x64"]
checksum = "sha256:abd57139139f4f5ce567f914bd168b7b2f4a3d39851711f0b1dd0c83c518f867"
url = "https://github.com/chainguard-dev/apko/releases/download/v1.2.31/apko_1.2.31_linux_amd64.tar.gz"
url_api = "https://api.github.com/repos/chainguard-dev/apko/releases/assets/499430072"
[tools.apko."platforms.linux-x64-musl"]
checksum = "sha256:abd57139139f4f5ce567f914bd168b7b2f4a3d39851711f0b1dd0c83c518f867"
url = "https://github.com/chainguard-dev/apko/releases/download/v1.2.31/apko_1.2.31_linux_amd64.tar.gz"
url_api = "https://api.github.com/repos/chainguard-dev/apko/releases/assets/499430072"
[tools.apko."platforms.macos-arm64"]
checksum = "sha256:27463a250ec5d284610d0bc2203598d66eb075f9418592afad785d6930dc73ab"
url = "https://github.com/chainguard-dev/apko/releases/download/v1.2.31/apko_1.2.31_darwin_arm64.tar.gz"
url_api = "https://api.github.com/repos/chainguard-dev/apko/releases/assets/499430052"
[tools.apko."platforms.macos-x64"]
checksum = "sha256:b09a9a3f2d941ecf4dbaf55b1f5231a5b12c5e99af1cba805f616915e82860c8"
url = "https://github.com/chainguard-dev/apko/releases/download/v1.2.31/apko_1.2.31_darwin_amd64.tar.gz"
url_api = "https://api.github.com/repos/chainguard-dev/apko/releases/assets/499430053"
[[tools."aqua:ariga/atlas"]]
version = "1.0.0"
backend = "aqua:ariga/atlas"
[tools."aqua:ariga/atlas"."platforms.linux-arm64"]
checksum = "sha256:69a463cf6d51a93abeffbdc906b69f969c12e7a706a6d0a4e388b4ebd713c5f9"
url = "https://release.ariga.io/atlas/atlas-linux-arm64-v1.0.0"
[tools."aqua:ariga/atlas"."platforms.linux-arm64-musl"]
checksum = "sha256:69a463cf6d51a93abeffbdc906b69f969c12e7a706a6d0a4e388b4ebd713c5f9"
url = "https://release.ariga.io/atlas/atlas-linux-arm64-v1.0.0"
[tools."aqua:ariga/atlas"."platforms.linux-x64"]
checksum = "sha256:7147245d95af96cd1e90ef5cfd57aa9e9df2a9e7ca5a735ddf0a1230f325cee2"
url = "https://release.ariga.io/atlas/atlas-linux-amd64-v1.0.0"
[tools."aqua:ariga/atlas"."platforms.linux-x64-musl"]
checksum = "sha256:7147245d95af96cd1e90ef5cfd57aa9e9df2a9e7ca5a735ddf0a1230f325cee2"
url = "https://release.ariga.io/atlas/atlas-linux-amd64-v1.0.0"
[tools."aqua:ariga/atlas"."platforms.macos-arm64"]
checksum = "sha256:e7fb3098cc46cf8c2a84f5ed57f371f0ed80986d37f0f606ec464518c20518b5"
url = "https://release.ariga.io/atlas/atlas-darwin-arm64-v1.0.0"
[tools."aqua:ariga/atlas"."platforms.macos-x64"]
checksum = "sha256:29c140e14d7b359af9cb36a91661a882fd806d4de16867b08b8b948aeba7a507"
url = "https://release.ariga.io/atlas/atlas-darwin-amd64-v1.0.0"
[tools."aqua:ariga/atlas"."platforms.windows-x64"]
checksum = "sha256:abf36ade639454afe25f646a09eb5c46629b0b06c640b565496fc5d45e56f8ec"
url = "https://release.ariga.io/atlas/atlas-windows-amd64-v1.0.0.exe"
[[tools.aube]]
version = "1.38.1"
backend = "aqua:jdx/aube"
[tools.aube."platforms.linux-arm64"]
checksum = "sha256:dda1d6ac8d4c9cba58b52be8f86ceb222bb3b28ca79b76fb4ca0d46633f44212"
url = "https://github.com/jdx/aube/releases/download/v1.38.1/aube-v1.38.1-aarch64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/508113920"
provenance = "github-attestations"
[tools.aube."platforms.linux-arm64-musl"]
checksum = "sha256:c19365e4dd68f1177da4dc36e9b3e5dad623b12bfa252298c907564ab0cfa099"
url = "https://github.com/jdx/aube/releases/download/v1.38.1/aube-v1.38.1-aarch64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/508077830"
provenance = "github-attestations"
[tools.aube."platforms.linux-x64"]
checksum = "sha256:1f10a0a7bd38d94b348b52f785a7496dab6985775b3dfc2ba74914d1c739fba9"
url = "https://github.com/jdx/aube/releases/download/v1.38.1/aube-v1.38.1-x86_64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/508095865"
provenance = "github-attestations"
[tools.aube."platforms.linux-x64-musl"]
checksum = "sha256:3557dc1c64f47479440eda76c41bee23998ea3336a70aee22749d298a95938cf"
url = "https://github.com/jdx/aube/releases/download/v1.38.1/aube-v1.38.1-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/508091774"
provenance = "github-attestations"
[tools.aube."platforms.macos-arm64"]
checksum = "sha256:120989b5613a48333424c0aa4c3518573baec74836ba700d8d791900b974004b"
url = "https://github.com/jdx/aube/releases/download/v1.38.1/aube-v1.38.1-aarch64-apple-darwin.tar.gz"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/508129180"
provenance = "github-attestations"
[tools.aube."platforms.windows-x64"]
checksum = "sha256:3eadbe826a79184792f423c52e6ad3a20575f0c408ede66612f6db175339a180"
url = "https://github.com/jdx/aube/releases/download/v1.38.1/aube-v1.38.1-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/jdx/aube/releases/assets/508093335"
provenance = "github-attestations"
[[tools.buf]]
version = "1.72.0"
backend = "aqua:bufbuild/buf"
[tools.buf."platforms.linux-arm64"]
checksum = "sha256:7641bd7e06a37a54cbb8c789f53465899def96196ab5c08057432f781a15d517"
url = "https://github.com/bufbuild/buf/releases/download/v1.72.0/buf-Linux-aarch64.tar.gz"
url_api = "https://api.github.com/repos/bufbuild/buf/releases/assets/480772526"
provenance = "minisign"
[tools.buf."platforms.linux-arm64-musl"]
checksum = "sha256:7641bd7e06a37a54cbb8c789f53465899def96196ab5c08057432f781a15d517"
url = "https://github.com/bufbuild/buf/releases/download/v1.72.0/buf-Linux-aarch64.tar.gz"
url_api = "https://api.github.com/repos/bufbuild/buf/releases/assets/480772526"
provenance = "minisign"
[tools.buf."platforms.linux-x64"]
checksum = "sha256:a9c6186cf6fcf062b247345e1b7b12c26f580c1b2a4bbf4d3fe080abf85ceee8"
url = "https://github.com/bufbuild/buf/releases/download/v1.72.0/buf-Linux-x86_64.tar.gz"
url_api = "https://api.github.com/repos/bufbuild/buf/releases/assets/480772583"
provenance = "minisign"
[tools.buf."platforms.linux-x64-musl"]
checksum = "sha256:a9c6186cf6fcf062b247345e1b7b12c26f580c1b2a4bbf4d3fe080abf85ceee8"
url = "https://github.com/bufbuild/buf/releases/download/v1.72.0/buf-Linux-x86_64.tar.gz"
url_api = "https://api.github.com/repos/bufbuild/buf/releases/assets/480772583"
provenance = "minisign"
[tools.buf."platforms.macos-arm64"]
checksum = "sha256:be040ae0ca381103dfda68a36738695c4db3e48de8e91412acdc3d991f39b91e"
url = "https://github.com/bufbuild/buf/releases/download/v1.72.0/buf-Darwin-arm64.tar.gz"
url_api = "https://api.github.com/repos/bufbuild/buf/releases/assets/480772487"
provenance = "minisign"
[tools.buf."platforms.macos-x64"]
checksum = "sha256:8b87e66786b46b20e7f7e328c9e15f64f636041acfdbf93374873d9014a62d30"
url = "https://github.com/bufbuild/buf/releases/download/v1.72.0/buf-Darwin-x86_64.tar.gz"
url_api = "https://api.github.com/repos/bufbuild/buf/releases/assets/480772489"
provenance = "minisign"
[tools.buf."platforms.windows-x64"]
checksum = "sha256:0332d8d1bf062c95a0418081b7e574551032ee72064af05e304e3a1454f8cf11"
url = "https://github.com/bufbuild/buf/releases/download/v1.72.0/buf-Windows-x86_64.zip"
url_api = "https://api.github.com/repos/bufbuild/buf/releases/assets/480772631"
provenance = "minisign"
[[tools.flyctl]]
version = "0.4.77"
backend = "aqua:superfly/flyctl"
[tools.flyctl."platforms.linux-arm64"]
checksum = "sha256:974b5e3013a620bd5f8d74bfd998dcd2a8e09f2f93196995371bca80b44564b2"
url = "https://github.com/superfly/flyctl/releases/download/v0.4.77/flyctl_0.4.77_Linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/superfly/flyctl/releases/assets/495778559"
[tools.flyctl."platforms.linux-arm64-musl"]
checksum = "sha256:974b5e3013a620bd5f8d74bfd998dcd2a8e09f2f93196995371bca80b44564b2"
url = "https://github.com/superfly/flyctl/releases/download/v0.4.77/flyctl_0.4.77_Linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/superfly/flyctl/releases/assets/495778559"
[tools.flyctl."platforms.linux-x64"]
checksum = "sha256:4931a3d0365c4b9a8bacda8a5e53be7692eac249aa2a7b917b99b086b083fdcc"
url = "https://github.com/superfly/flyctl/releases/download/v0.4.77/flyctl_0.4.77_Linux_x86_64.tar.gz"
url_api = "https://api.github.com/repos/superfly/flyctl/releases/assets/495778560"
[tools.flyctl."platforms.linux-x64-musl"]
checksum = "sha256:4931a3d0365c4b9a8bacda8a5e53be7692eac249aa2a7b917b99b086b083fdcc"
url = "https://github.com/superfly/flyctl/releases/download/v0.4.77/flyctl_0.4.77_Linux_x86_64.tar.gz"
url_api = "https://api.github.com/repos/superfly/flyctl/releases/assets/495778560"
[tools.flyctl."platforms.macos-arm64"]
checksum = "sha256:73e35b795b64fe4b658775d6039225da4da0c162941b0d64cec11bf7cab09b13"
url = "https://github.com/superfly/flyctl/releases/download/v0.4.77/flyctl_0.4.77_macOS_arm64.tar.gz"
url_api = "https://api.github.com/repos/superfly/flyctl/releases/assets/495778558"
[tools.flyctl."platforms.macos-x64"]
checksum = "sha256:6603884c79097173ad42f69c11e65556c0fbee29ef6c9ab50a5504eb825096a6"
url = "https://github.com/superfly/flyctl/releases/download/v0.4.77/flyctl_0.4.77_macOS_x86_64.tar.gz"
url_api = "https://api.github.com/repos/superfly/flyctl/releases/assets/495778557"
[tools.flyctl."platforms.windows-x64"]
checksum = "sha256:6a9869922fa6f5abdc8997a8f6eb276aa9feb5a0848d963d9eb3d50e034fcb5a"
url = "https://github.com/superfly/flyctl/releases/download/v0.4.77/flyctl_0.4.77_Windows_x86_64.zip"
url_api = "https://api.github.com/repos/superfly/flyctl/releases/assets/495778612"
[[tools."github:FiloSottile/mkcert"]]
version = "1.4.4"
backend = "github:FiloSottile/mkcert"
[tools."github:FiloSottile/mkcert"."platforms.linux-arm64"]
url = "https://github.com/FiloSottile/mkcert/releases/download/v1.4.4/mkcert-v1.4.4-linux-arm64"
url_api = "https://api.github.com/repos/FiloSottile/mkcert/releases/assets/63709957"
[tools."github:FiloSottile/mkcert"."platforms.linux-arm64-musl"]
url = "https://github.com/FiloSottile/mkcert/releases/download/v1.4.4/mkcert-v1.4.4-linux-arm64"
url_api = "https://api.github.com/repos/FiloSottile/mkcert/releases/assets/63709957"
[tools."github:FiloSottile/mkcert"."platforms.linux-x64"]
url = "https://github.com/FiloSottile/mkcert/releases/download/v1.4.4/mkcert-v1.4.4-linux-amd64"
url_api = "https://api.github.com/repos/FiloSottile/mkcert/releases/assets/63709955"
[tools."github:FiloSottile/mkcert"."platforms.linux-x64-musl"]
url = "https://github.com/FiloSottile/mkcert/releases/download/v1.4.4/mkcert-v1.4.4-linux-amd64"
url_api = "https://api.github.com/repos/FiloSottile/mkcert/releases/assets/63709955"
[tools."github:FiloSottile/mkcert"."platforms.macos-arm64"]
url = "https://github.com/FiloSottile/mkcert/releases/download/v1.4.4/mkcert-v1.4.4-darwin-arm64"
url_api = "https://api.github.com/repos/FiloSottile/mkcert/releases/assets/63709954"
[tools."github:FiloSottile/mkcert"."platforms.macos-x64"]
url = "https://github.com/FiloSottile/mkcert/releases/download/v1.4.4/mkcert-v1.4.4-darwin-amd64"
url_api = "https://api.github.com/repos/FiloSottile/mkcert/releases/assets/63709952"
[tools."github:FiloSottile/mkcert"."platforms.windows-x64"]
url = "https://github.com/FiloSottile/mkcert/releases/download/v1.4.4/mkcert-v1.4.4-windows-amd64.exe"
url_api = "https://api.github.com/repos/FiloSottile/mkcert/releases/assets/63709958"
[[tools."github:ast-grep/ast-grep"]]
version = "0.45.0"
backend = "github:ast-grep/ast-grep"
[tools."github:ast-grep/ast-grep"."platforms.linux-arm64"]
checksum = "sha256:62b60892dafacfa76d6de87157659f880bbf85ff38bdab52db12f1f14ec60f94"
url = "https://github.com/ast-grep/ast-grep/releases/download/0.45.0/app-aarch64-unknown-linux-gnu.zip"
url_api = "https://api.github.com/repos/ast-grep/ast-grep/releases/assets/487374979"
[tools."github:ast-grep/ast-grep"."platforms.linux-arm64-musl"]
checksum = "sha256:62b60892dafacfa76d6de87157659f880bbf85ff38bdab52db12f1f14ec60f94"
url = "https://github.com/ast-grep/ast-grep/releases/download/0.45.0/app-aarch64-unknown-linux-gnu.zip"
url_api = "https://api.github.com/repos/ast-grep/ast-grep/releases/assets/487374979"
[tools."github:ast-grep/ast-grep"."platforms.linux-x64"]
checksum = "sha256:78931ae35ebac33d9a72b3aecea3e3d62d6e5b0b718ac8bbedfbe69d68421e41"
url = "https://github.com/ast-grep/ast-grep/releases/download/0.45.0/app-x86_64-unknown-linux-gnu.zip"
url_api = "https://api.github.com/repos/ast-grep/ast-grep/releases/assets/487374029"
[tools."github:ast-grep/ast-grep"."platforms.linux-x64-musl"]
checksum = "sha256:78931ae35ebac33d9a72b3aecea3e3d62d6e5b0b718ac8bbedfbe69d68421e41"
url = "https://github.com/ast-grep/ast-grep/releases/download/0.45.0/app-x86_64-unknown-linux-gnu.zip"
url_api = "https://api.github.com/repos/ast-grep/ast-grep/releases/assets/487374029"
[tools."github:ast-grep/ast-grep"."platforms.macos-arm64"]
checksum = "sha256:ec2e3680f4f84c68b48420bcca01d21389787c7318b52083dde6f46ac12ad946"
url = "https://github.com/ast-grep/ast-grep/releases/download/0.45.0/app-aarch64-apple-darwin.zip"
url_api = "https://api.github.com/repos/ast-grep/ast-grep/releases/assets/487376083"
[tools."github:ast-grep/ast-grep"."platforms.macos-x64"]
checksum = "sha256:78d0d9db2f4dfd964fd313e70e92571c6d4204243ad8f3d0abbb2ffc56e45fc6"
url = "https://github.com/ast-grep/ast-grep/releases/download/0.45.0/app-x86_64-apple-darwin.zip"
url_api = "https://api.github.com/repos/ast-grep/ast-grep/releases/assets/487375810"
[tools."github:ast-grep/ast-grep"."platforms.windows-x64"]
checksum = "sha256:a1b5b7c06994992755d4cd0b9cf10c2f4a6e7b4a82d2810edee5985a59f67ac5"
url = "https://github.com/ast-grep/ast-grep/releases/download/0.45.0/app-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/ast-grep/ast-grep/releases/assets/487376855"
[[tools."github:gotestyourself/gotestsum"]]
version = "1.13.0"
backend = "github:gotestyourself/gotestsum"
[tools."github:gotestyourself/gotestsum"."platforms.linux-arm64"]
checksum = "sha256:7644a4c5cd1bb978d56245aeab25a586ac5ac62adebed20a399548867c13499d"
url = "https://github.com/gotestyourself/gotestsum/releases/download/v1.13.0/gotestsum_1.13.0_linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/gotestyourself/gotestsum/releases/assets/291996834"
[tools."github:gotestyourself/gotestsum"."platforms.linux-arm64-musl"]
checksum = "sha256:7644a4c5cd1bb978d56245aeab25a586ac5ac62adebed20a399548867c13499d"
url = "https://github.com/gotestyourself/gotestsum/releases/download/v1.13.0/gotestsum_1.13.0_linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/gotestyourself/gotestsum/releases/assets/291996834"
[tools."github:gotestyourself/gotestsum"."platforms.linux-x64"]
checksum = "sha256:11ccddeaf708ef228889f9fe2f68291a75b27013ddfc3b18156e094f5f40e8ee"
url = "https://github.com/gotestyourself/gotestsum/releases/download/v1.13.0/gotestsum_1.13.0_linux_amd64.tar.gz"
url_api = "https://api.github.com/repos/gotestyourself/gotestsum/releases/assets/291996833"
[tools."github:gotestyourself/gotestsum"."platforms.linux-x64-musl"]
checksum = "sha256:11ccddeaf708ef228889f9fe2f68291a75b27013ddfc3b18156e094f5f40e8ee"
url = "https://github.com/gotestyourself/gotestsum/releases/download/v1.13.0/gotestsum_1.13.0_linux_amd64.tar.gz"
url_api = "https://api.github.com/repos/gotestyourself/gotestsum/releases/assets/291996833"
[tools."github:gotestyourself/gotestsum"."platforms.macos-arm64"]
checksum = "sha256:509cb27aef747f48faf9bce424f59dcf79572c905204b990ee935bbfcc7fa0e9"
url = "https://github.com/gotestyourself/gotestsum/releases/download/v1.13.0/gotestsum_1.13.0_darwin_arm64.tar.gz"
url_api = "https://api.github.com/repos/gotestyourself/gotestsum/releases/assets/291996838"
[tools."github:gotestyourself/gotestsum"."platforms.macos-x64"]
checksum = "sha256:99529350f4c7b780b1efc543ca0d9721b09f0a4228f0efa9281261f58fefa05a"
url = "https://github.com/gotestyourself/gotestsum/releases/download/v1.13.0/gotestsum_1.13.0_darwin_amd64.tar.gz"
url_api = "https://api.github.com/repos/gotestyourself/gotestsum/releases/assets/291996829"
[tools."github:gotestyourself/gotestsum"."platforms.windows-x64"]
checksum = "sha256:fd5a6dc69e46a0970593e70d85a7e75f16714e9c61d6d72ccc324eb82df5bb8a"
url = "https://github.com/gotestyourself/gotestsum/releases/download/v1.13.0/gotestsum_1.13.0_windows_amd64.tar.gz"
url_api = "https://api.github.com/repos/gotestyourself/gotestsum/releases/assets/291996823"
[[tools."github:pb33f/openapi-changes"]]
version = "0.2.10"
backend = "github:pb33f/openapi-changes"
[tools."github:pb33f/openapi-changes"."platforms.linux-arm64"]
checksum = "sha256:96d10ae8ec728950e306474a586831e4a9589844aa76d25185609a1d6087a2a6"
url = "https://github.com/pb33f/openapi-changes/releases/download/v0.2.10/openapi-changes_0.2.10_linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/pb33f/openapi-changes/releases/assets/463116801"
[tools."github:pb33f/openapi-changes"."platforms.linux-arm64-musl"]
checksum = "sha256:96d10ae8ec728950e306474a586831e4a9589844aa76d25185609a1d6087a2a6"
url = "https://github.com/pb33f/openapi-changes/releases/download/v0.2.10/openapi-changes_0.2.10_linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/pb33f/openapi-changes/releases/assets/463116801"
[tools."github:pb33f/openapi-changes"."platforms.linux-x64"]
checksum = "sha256:743e4d675d061a3ba7b866a1c9d2b682fbd02fd32ffe76cc121a768b28ba9b0b"
url = "https://github.com/pb33f/openapi-changes/releases/download/v0.2.10/openapi-changes_0.2.10_linux_x86_64.tar.gz"
url_api = "https://api.github.com/repos/pb33f/openapi-changes/releases/assets/463116767"
[tools."github:pb33f/openapi-changes"."platforms.linux-x64-musl"]
checksum = "sha256:743e4d675d061a3ba7b866a1c9d2b682fbd02fd32ffe76cc121a768b28ba9b0b"
url = "https://github.com/pb33f/openapi-changes/releases/download/v0.2.10/openapi-changes_0.2.10_linux_x86_64.tar.gz"
url_api = "https://api.github.com/repos/pb33f/openapi-changes/releases/assets/463116767"
[tools."github:pb33f/openapi-changes"."platforms.macos-arm64"]
checksum = "sha256:39edf6f97402129d49880f10d779bf666773657be9002ecac4b76ff55231cda8"
url = "https://github.com/pb33f/openapi-changes/releases/download/v0.2.10/openapi-changes_0.2.10_darwin_arm64.tar.gz"
url_api = "https://api.github.com/repos/pb33f/openapi-changes/releases/assets/463116768"
[tools."github:pb33f/openapi-changes"."platforms.macos-x64"]
checksum = "sha256:9446292ee126217c6f5a9cbe474f495d79b80da57cef94ab6fc57e7e32e7f73c"
url = "https://github.com/pb33f/openapi-changes/releases/download/v0.2.10/openapi-changes_0.2.10_darwin_x86_64.tar.gz"
url_api = "https://api.github.com/repos/pb33f/openapi-changes/releases/assets/463116769"
[tools."github:pb33f/openapi-changes"."platforms.windows-x64"]
checksum = "sha256:67710c2605b10eebdaad9021700b5dd665eb4120894e79e1083b6545c381a90b"
url = "https://github.com/pb33f/openapi-changes/releases/download/v0.2.10/openapi-changes_0.2.10_windows_x86_64.tar.gz"
url_api = "https://api.github.com/repos/pb33f/openapi-changes/releases/assets/463116827"
[[tools."github:pnpm/pnpm"]]
version = "11.19.0"
backend = "github:pnpm/pnpm"
[tools."github:pnpm/pnpm"."platforms.linux-arm64"]
checksum = "sha256:1b1630c3ae133448a9445911499ab2d59bd77f860abbd595dbc89da4eb82c22b"
url = "https://github.com/pnpm/pnpm/releases/download/v11.19.0/pnpm-linux-arm64.tar.gz"
url_api = "https://api.github.com/repos/pnpm/pnpm/releases/assets/496485122"
provenance = "github-attestations"
[tools."github:pnpm/pnpm"."platforms.linux-arm64-musl"]
checksum = "sha256:89309036b565a41e28f970a95c45ae2c448f80cc54c77a309f140e11706dd858"
url = "https://github.com/pnpm/pnpm/releases/download/v11.19.0/pnpm-linux-arm64-musl.tar.gz"
url_api = "https://api.github.com/repos/pnpm/pnpm/releases/assets/496485119"
provenance = "github-attestations"
[tools."github:pnpm/pnpm"."platforms.linux-x64"]
checksum = "sha256:01562375e2b05b5cdc8d67e0bbfed549221c8a739b485ee0dac13d32d383ec24"
url = "https://github.com/pnpm/pnpm/releases/download/v11.19.0/pnpm-linux-x64.tar.gz"
url_api = "https://api.github.com/repos/pnpm/pnpm/releases/assets/496485123"
provenance = "github-attestations"
[tools."github:pnpm/pnpm"."platforms.linux-x64-musl"]
checksum = "sha256:d9fbd07722d1ea5b3ae326c0d48557a318677faa566ca6023534054453c8fa5b"
url = "https://github.com/pnpm/pnpm/releases/download/v11.19.0/pnpm-linux-x64-musl.tar.gz"
url_api = "https://api.github.com/repos/pnpm/pnpm/releases/assets/496485125"
provenance = "github-attestations"
[tools."github:pnpm/pnpm"."platforms.macos-arm64"]
checksum = "sha256:00075435e24d20f5d369c9aec1ee1c29ebb78b52de8ea9807013fc70187ea0e5"
url = "https://github.com/pnpm/pnpm/releases/download/v11.19.0/pnpm-darwin-arm64.tar.gz"
url_api = "https://api.github.com/repos/pnpm/pnpm/releases/assets/496485121"
provenance = "github-attestations"
[tools."github:pnpm/pnpm"."platforms.macos-x64"]
checksum = "sha256:a78a90c08ee1d8914920ad59d0447194ac85b03f868fc4c0e143da8f49808e79"
url = "https://github.com/pnpm/pnpm/releases/download/v11.19.0/source-maps.tgz"
url_api = "https://api.github.com/repos/pnpm/pnpm/releases/assets/496485117"
provenance = "github-attestations"
[tools."github:pnpm/pnpm"."platforms.windows-x64"]
checksum = "sha256:00ba922ef628d6879332af58cc3fcfe4177c71677f714406467047eb39902d22"
url = "https://github.com/pnpm/pnpm/releases/download/v11.19.0/pnpm-win32-x64.zip"
url_api = "https://api.github.com/repos/pnpm/pnpm/releases/assets/496485130"
provenance = "github-attestations"
[[tools."github:speakeasy-api/openapi"]]
version = "1.24.0"
backend = "github:speakeasy-api/openapi"
[tools."github:speakeasy-api/openapi"."platforms.linux-arm64"]
checksum = "sha256:2be9f516665cd5a66ed4b6b6a3542591456d967c3b287b0a3402ac0a119bb552"
url = "https://github.com/speakeasy-api/openapi/releases/download/v1.24.0/openapi_Linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/speakeasy-api/openapi/releases/assets/454075701"
[tools."github:speakeasy-api/openapi"."platforms.linux-arm64-musl"]
checksum = "sha256:2be9f516665cd5a66ed4b6b6a3542591456d967c3b287b0a3402ac0a119bb552"
url = "https://github.com/speakeasy-api/openapi/releases/download/v1.24.0/openapi_Linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/speakeasy-api/openapi/releases/assets/454075701"
[tools."github:speakeasy-api/openapi"."platforms.linux-x64"]
checksum = "sha256:47069a1913323ef162cbd05bbbbd6fce2adb4728ad27cf45e6a7c843c3400f6c"
url = "https://github.com/speakeasy-api/openapi/releases/download/v1.24.0/openapi_Linux_x86_64.tar.gz"
url_api = "https://api.github.com/repos/speakeasy-api/openapi/releases/assets/454075700"
[tools."github:speakeasy-api/openapi"."platforms.linux-x64-musl"]
checksum = "sha256:47069a1913323ef162cbd05bbbbd6fce2adb4728ad27cf45e6a7c843c3400f6c"
url = "https://github.com/speakeasy-api/openapi/releases/download/v1.24.0/openapi_Linux_x86_64.tar.gz"
url_api = "https://api.github.com/repos/speakeasy-api/openapi/releases/assets/454075700"
[tools."github:speakeasy-api/openapi"."platforms.macos-arm64"]
checksum = "sha256:80d514c655e56edfedd229c36e21f67308843c4cb62f8e09e0337838ef821d10"
url = "https://github.com/speakeasy-api/openapi/releases/download/v1.24.0/openapi_Darwin_arm64.tar.gz"
url_api = "https://api.github.com/repos/speakeasy-api/openapi/releases/assets/454075747"
[tools."github:speakeasy-api/openapi"."platforms.macos-x64"]
checksum = "sha256:94f2f76f88ac4435d7ce07e2db445243a9b8f9b367593739e5f3aa3a968a3af9"
url = "https://github.com/speakeasy-api/openapi/releases/download/v1.24.0/openapi_Darwin_x86_64.tar.gz"
url_api = "https://api.github.com/repos/speakeasy-api/openapi/releases/assets/454075748"
[tools."github:speakeasy-api/openapi"."platforms.windows-x64"]
checksum = "sha256:8c18ae16be7610a46bcb673aa2c1a07bb574ac172ea962187a0bbedb1e77b53a"
url = "https://github.com/speakeasy-api/openapi/releases/download/v1.24.0/openapi_Windows_x86_64.zip"
url_api = "https://api.github.com/repos/speakeasy-api/openapi/releases/assets/454075702"
[[tools."github:speakeasy-api/speakeasy"]]
version = "1.791.1"
backend = "github:speakeasy-api/speakeasy"
[tools."github:speakeasy-api/speakeasy"."platforms.linux-arm64"]
checksum = "sha256:7ea91ff8e1b4be9d6e28a549b50f68260c39e342a76d63ddc7b7123033ac7915"
url = "https://github.com/speakeasy-api/speakeasy/releases/download/v1.791.1/speakeasy_linux_arm64.zip"
url_api = "https://api.github.com/repos/speakeasy-api/speakeasy/releases/assets/499964320"
[tools."github:speakeasy-api/speakeasy"."platforms.linux-arm64-musl"]
checksum = "sha256:7ea91ff8e1b4be9d6e28a549b50f68260c39e342a76d63ddc7b7123033ac7915"
url = "https://github.com/speakeasy-api/speakeasy/releases/download/v1.791.1/speakeasy_linux_arm64.zip"
url_api = "https://api.github.com/repos/speakeasy-api/speakeasy/releases/assets/499964320"
[tools."github:speakeasy-api/speakeasy"."platforms.linux-x64"]
checksum = "sha256:486274fde3a058fdab9eb3d73dee7322f10b80ad6cd25d8aba91cb30da507f72"
url = "https://github.com/speakeasy-api/speakeasy/releases/download/v1.791.1/speakeasy_linux_amd64.zip"
url_api = "https://api.github.com/repos/speakeasy-api/speakeasy/releases/assets/499964319"
[tools."github:speakeasy-api/speakeasy"."platforms.linux-x64-musl"]
checksum = "sha256:486274fde3a058fdab9eb3d73dee7322f10b80ad6cd25d8aba91cb30da507f72"
url = "https://github.com/speakeasy-api/speakeasy/releases/download/v1.791.1/speakeasy_linux_amd64.zip"
url_api = "https://api.github.com/repos/speakeasy-api/speakeasy/releases/assets/499964319"
[tools."github:speakeasy-api/speakeasy"."platforms.macos-arm64"]
checksum = "sha256:9a4eae23e2461923be661a1755de32f576c311a6fd28696e807fe8f5ec198267"
url = "https://github.com/speakeasy-api/speakeasy/releases/download/v1.791.1/speakeasy_darwin_arm64.zip"
url_api = "https://api.github.com/repos/speakeasy-api/speakeasy/releases/assets/499964316"
[tools."github:speakeasy-api/speakeasy"."platforms.macos-x64"]
checksum = "sha256:e9924b866a4bb375ea006d41e2a77cdefd2c989a5ca44d63aea134e6feca1106"
url = "https://github.com/speakeasy-api/speakeasy/releases/download/v1.791.1/speakeasy_darwin_amd64.zip"
url_api = "https://api.github.com/repos/speakeasy-api/speakeasy/releases/assets/499964321"
[tools."github:speakeasy-api/speakeasy"."platforms.windows-x64"]
checksum = "sha256:beb7227ca3218ce43d2b2f7a833ca26144bccb65a27f1951c9d156db8076e0cf"
url = "https://github.com/speakeasy-api/speakeasy/releases/download/v1.791.1/speakeasy_windows_amd64.zip"
url_api = "https://api.github.com/repos/speakeasy-api/speakeasy/releases/assets/499964323"
[[tools."github:sqlc-dev/sqlc"]]
version = "1.31.1"
backend = "github:sqlc-dev/sqlc"
[tools."github:sqlc-dev/sqlc"."platforms.linux-arm64"]
checksum = "sha256:b7cae247740d0c51a1e657479e5b2d21e6fef428f596682a01bc55bf4ab8a23d"
url = "https://github.com/sqlc-dev/sqlc/releases/download/v1.31.1/sqlc_1.31.1_linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/sqlc-dev/sqlc/releases/assets/402611988"
[tools."github:sqlc-dev/sqlc"."platforms.linux-arm64-musl"]
checksum = "sha256:b7cae247740d0c51a1e657479e5b2d21e6fef428f596682a01bc55bf4ab8a23d"
url = "https://github.com/sqlc-dev/sqlc/releases/download/v1.31.1/sqlc_1.31.1_linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/sqlc-dev/sqlc/releases/assets/402611988"
[tools."github:sqlc-dev/sqlc"."platforms.linux-x64"]
checksum = "sha256:497ae4fcdfa64c5b0c311ffe4c2bd991e43991e82e5367792ed78bc2dca27354"
url = "https://github.com/sqlc-dev/sqlc/releases/download/v1.31.1/sqlc_1.31.1_linux_amd64.tar.gz"
url_api = "https://api.github.com/repos/sqlc-dev/sqlc/releases/assets/402611992"
[tools."github:sqlc-dev/sqlc"."platforms.linux-x64-musl"]
checksum = "sha256:497ae4fcdfa64c5b0c311ffe4c2bd991e43991e82e5367792ed78bc2dca27354"
url = "https://github.com/sqlc-dev/sqlc/releases/download/v1.31.1/sqlc_1.31.1_linux_amd64.tar.gz"
url_api = "https://api.github.com/repos/sqlc-dev/sqlc/releases/assets/402611992"
[tools."github:sqlc-dev/sqlc"."platforms.macos-arm64"]
checksum = "sha256:21602158c99eb1f2bae197a66abfb1941d1e9e50b23125bb193349c6b1acc71e"
url = "https://github.com/sqlc-dev/sqlc/releases/download/v1.31.1/sqlc_1.31.1_darwin_arm64.tar.gz"
url_api = "https://api.github.com/repos/sqlc-dev/sqlc/releases/assets/402611984"
[tools."github:sqlc-dev/sqlc"."platforms.macos-x64"]
checksum = "sha256:c5af76772e3785d21663a62697056b383f07629979b1bd25b93872e73dbd519b"
url = "https://github.com/sqlc-dev/sqlc/releases/download/v1.31.1/sqlc_1.31.1_darwin_amd64.tar.gz"
url_api = "https://api.github.com/repos/sqlc-dev/sqlc/releases/assets/402611989"
[tools."github:sqlc-dev/sqlc"."platforms.windows-x64"]
checksum = "sha256:352711fa7dcb05dcdfefca0ad71b2c9a74fd090f8d7fc609419de4cbc725429f"
url = "https://github.com/sqlc-dev/sqlc/releases/download/v1.31.1/sqlc_1.31.1_windows_amd64.zip"
url_api = "https://api.github.com/repos/sqlc-dev/sqlc/releases/assets/402612157"
[[tools."github:temporalio/cli"]]
version = "1.8.2"
backend = "github:temporalio/cli"
[tools."github:temporalio/cli"."platforms.linux-arm64"]
checksum = "sha256:83600a8fac6e3da54093e5da6918d399f501532b9f1172235603f9606f4ac6e4"
url = "https://github.com/temporalio/cli/releases/download/v1.8.2/temporal_cli_1.8.2_linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/temporalio/cli/releases/assets/496832526"
[tools."github:temporalio/cli"."platforms.linux-arm64-musl"]
checksum = "sha256:83600a8fac6e3da54093e5da6918d399f501532b9f1172235603f9606f4ac6e4"
url = "https://github.com/temporalio/cli/releases/download/v1.8.2/temporal_cli_1.8.2_linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/temporalio/cli/releases/assets/496832526"
[tools."github:temporalio/cli"."platforms.linux-x64"]
checksum = "sha256:d8421bda989e6514b4bdb4d63a9012a8a05a806892e881a5aad8510496349a94"
url = "https://github.com/temporalio/cli/releases/download/v1.8.2/temporal_cli_1.8.2_linux_amd64.tar.gz"
url_api = "https://api.github.com/repos/temporalio/cli/releases/assets/496832528"
[tools."github:temporalio/cli"."platforms.linux-x64-musl"]
checksum = "sha256:d8421bda989e6514b4bdb4d63a9012a8a05a806892e881a5aad8510496349a94"
url = "https://github.com/temporalio/cli/releases/download/v1.8.2/temporal_cli_1.8.2_linux_amd64.tar.gz"
url_api = "https://api.github.com/repos/temporalio/cli/releases/assets/496832528"
[tools."github:temporalio/cli"."platforms.macos-arm64"]
checksum = "sha256:dacdc3587682c04cf27e67c8878ca2d755230b6ad63c0c6ebddd7348ae90ed94"
url = "https://github.com/temporalio/cli/releases/download/v1.8.2/temporal_cli_1.8.2_darwin_arm64.tar.gz"
url_api = "https://api.github.com/repos/temporalio/cli/releases/assets/496832538"
[tools."github:temporalio/cli"."platforms.macos-x64"]
checksum = "sha256:489d7f5420cae02b559774ac23df035141954c33a51dba96f5759a0ddccdf1b6"
url = "https://github.com/temporalio/cli/releases/download/v1.8.2/temporal_cli_1.8.2_darwin_amd64.tar.gz"
url_api = "https://api.github.com/repos/temporalio/cli/releases/assets/496832529"
[tools."github:temporalio/cli"."platforms.windows-x64"]
checksum = "sha256:72e02498fa7849657c369377f7de69a8709b3d2183b6f2749f6c8bd54a984501"
url = "https://github.com/temporalio/cli/releases/download/v1.8.2/temporal_cli_1.8.2_windows_amd64.zip"
url_api = "https://api.github.com/repos/temporalio/cli/releases/assets/496832572"
[[tools.go]]
version = "1.26.5"
backend = "core:go"
[tools.go."platforms.linux-arm64"]
checksum = "sha256:fe4789e92b1f33358680864bbe8704289e7bb5fc207d80623c308935bd696d49"
url = "https://dl.google.com/go/go1.26.5.linux-arm64.tar.gz"
[tools.go."platforms.linux-arm64-musl"]
checksum = "sha256:fe4789e92b1f33358680864bbe8704289e7bb5fc207d80623c308935bd696d49"
url = "https://dl.google.com/go/go1.26.5.linux-arm64.tar.gz"
[tools.go."platforms.linux-x64"]
checksum = "sha256:5c2c3b16caefa1d968a94c1daca04a7ca301a496d9b086e17ad77bb81393f053"
url = "https://dl.google.com/go/go1.26.5.linux-amd64.tar.gz"
[tools.go."platforms.linux-x64-musl"]
checksum = "sha256:5c2c3b16caefa1d968a94c1daca04a7ca301a496d9b086e17ad77bb81393f053"
url = "https://dl.google.com/go/go1.26.5.linux-amd64.tar.gz"
[tools.go."platforms.macos-arm64"]
checksum = "sha256:efb87ff28af9a188d0536ef5d42e63dd52ba8263cd7344a993cc48dd11dedb6a"
url = "https://dl.google.com/go/go1.26.5.darwin-arm64.tar.gz"
[tools.go."platforms.macos-x64"]
checksum = "sha256:6231d8d3b8f5552ec6cbf6d685bdd5482e1e703214b120e89b3bf0d7bf1ef725"
url = "https://dl.google.com/go/go1.26.5.darwin-amd64.tar.gz"
[tools.go."platforms.windows-x64"]
checksum = "sha256:97e6b2a833b6d89f9ff17d25419ac0a7e3b482a044e9ab18cdef834bd834fd38"
url = "https://dl.google.com/go/go1.26.5.windows-amd64.zip"
[[tools.golangci-lint]]
version = "2.12.2"
backend = "aqua:golangci/golangci-lint"
[tools.golangci-lint."platforms.linux-arm64"]
checksum = "sha256:44cd40a8c76c86755375adfeea52cfd3533cb43d7bd647771e0ae065e166df3a"
url = "https://github.com/golangci/golangci-lint/releases/download/v2.12.2/golangci-lint-2.12.2-linux-arm64.tar.gz"
url_api = "https://api.github.com/repos/golangci/golangci-lint/releases/assets/413470996"
provenance = "github-attestations"
[tools.golangci-lint."platforms.linux-arm64-musl"]
checksum = "sha256:44cd40a8c76c86755375adfeea52cfd3533cb43d7bd647771e0ae065e166df3a"
url = "https://github.com/golangci/golangci-lint/releases/download/v2.12.2/golangci-lint-2.12.2-linux-arm64.tar.gz"
url_api = "https://api.github.com/repos/golangci/golangci-lint/releases/assets/413470996"
provenance = "github-attestations"
[tools.golangci-lint."platforms.linux-x64"]
checksum = "sha256:8df580d2670fed8fa984aac0507099af8df275e665215f5c7a2ae3943893a553"
url = "https://github.com/golangci/golangci-lint/releases/download/v2.12.2/golangci-lint-2.12.2-linux-amd64.tar.gz"
url_api = "https://api.github.com/repos/golangci/golangci-lint/releases/assets/413471054"
provenance = "github-attestations"
[tools.golangci-lint."platforms.linux-x64-musl"]
checksum = "sha256:8df580d2670fed8fa984aac0507099af8df275e665215f5c7a2ae3943893a553"
url = "https://github.com/golangci/golangci-lint/releases/download/v2.12.2/golangci-lint-2.12.2-linux-amd64.tar.gz"
url_api = "https://api.github.com/repos/golangci/golangci-lint/releases/assets/413471054"
provenance = "github-attestations"
[tools.golangci-lint."platforms.macos-arm64"]
checksum = "sha256:a9c54498731b3128f79e090be6110f3e5fffccc617b08142ed244d4126c73f29"
url = "https://github.com/golangci/golangci-lint/releases/download/v2.12.2/golangci-lint-2.12.2-darwin-arm64.tar.gz"
url_api = "https://api.github.com/repos/golangci/golangci-lint/releases/assets/413470950"
provenance = "github-attestations"
[tools.golangci-lint."platforms.macos-x64"]
checksum = "sha256:f6f06d94b6241521c53d15450c5209b028270bf966f842afb11c030c79f5bc16"
url = "https://github.com/golangci/golangci-lint/releases/download/v2.12.2/golangci-lint-2.12.2-darwin-amd64.tar.gz"
url_api = "https://api.github.com/repos/golangci/golangci-lint/releases/assets/413470980"
provenance = "github-attestations"
[tools.golangci-lint."platforms.windows-x64"]
checksum = "sha256:bd42e3ebc8cb4ececb86941983baaf1dc221bbb04d838e94ce63b49cc91e02bb"
url = "https://github.com/golangci/golangci-lint/releases/download/v2.12.2/golangci-lint-2.12.2-windows-amd64.zip"
url_api = "https://api.github.com/repos/golangci/golangci-lint/releases/assets/413471017"
provenance = "github-attestations"
[[tools.gomigrate]]
version = "4.19.1"
backend = "aqua:golang-migrate/migrate"
[tools.gomigrate."platforms.linux-arm64"]
checksum = "sha256:2fea2455c0f3f07cc3f4b98471c951ad1a716059574b20b6416bd1e9058751c5"
url = "https://github.com/golang-migrate/migrate/releases/download/v4.19.1/migrate.linux-arm64.tar.gz"
url_api = "https://api.github.com/repos/golang-migrate/migrate/releases/assets/322306450"
[tools.gomigrate."platforms.linux-arm64-musl"]
checksum = "sha256:2fea2455c0f3f07cc3f4b98471c951ad1a716059574b20b6416bd1e9058751c5"
url = "https://github.com/golang-migrate/migrate/releases/download/v4.19.1/migrate.linux-arm64.tar.gz"
url_api = "https://api.github.com/repos/golang-migrate/migrate/releases/assets/322306450"
[tools.gomigrate."platforms.linux-x64"]
checksum = "sha256:2ac648fbd1b127b69ab5a7b33cf96212178f71e22379fc50573630c6f4c7ce18"
url = "https://github.com/golang-migrate/migrate/releases/download/v4.19.1/migrate.linux-amd64.tar.gz"
url_api = "https://api.github.com/repos/golang-migrate/migrate/releases/assets/322306464"
[tools.gomigrate."platforms.linux-x64-musl"]
checksum = "sha256:2ac648fbd1b127b69ab5a7b33cf96212178f71e22379fc50573630c6f4c7ce18"
url = "https://github.com/golang-migrate/migrate/releases/download/v4.19.1/migrate.linux-amd64.tar.gz"
url_api = "https://api.github.com/repos/golang-migrate/migrate/releases/assets/322306464"
[tools.gomigrate."platforms.macos-arm64"]
checksum = "sha256:a8cc8657afd1c2c93c78e8b77fd2275d150c29ebc1fff0e8fe0be68751503468"
url = "https://github.com/golang-migrate/migrate/releases/download/v4.19.1/migrate.darwin-arm64.tar.gz"
url_api = "https://api.github.com/repos/golang-migrate/migrate/releases/assets/322306474"
[tools.gomigrate."platforms.macos-x64"]
checksum = "sha256:e010d5d1792fa9b368c846f0aa297982322aa5739e784608d3cea653d297e0f4"
url = "https://github.com/golang-migrate/migrate/releases/download/v4.19.1/migrate.darwin-amd64.tar.gz"
url_api = "https://api.github.com/repos/golang-migrate/migrate/releases/assets/322306451"
[tools.gomigrate."platforms.windows-x64"]
checksum = "sha256:d2537dfd991787c1e458965c4f49098c5a72f943bfc9d975c573a9c245f7ba2e"
url = "https://github.com/golang-migrate/migrate/releases/download/v4.19.1/migrate.windows-amd64.zip"
url_api = "https://api.github.com/repos/golang-migrate/migrate/releases/assets/322306462"
[[tools.gum]]
version = "0.17.0"
backend = "aqua:charmbracelet/gum"
[tools.gum."platforms.linux-arm64"]
checksum = "sha256:b0b9ed95cbf7c8b7073f17b9591811f5c001e33c7cfd066ca83ce8a07c576f9c"
url = "https://github.com/charmbracelet/gum/releases/download/v0.17.0/gum_0.17.0_Linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/charmbracelet/gum/releases/assets/290080957"
[tools.gum."platforms.linux-arm64-musl"]
checksum = "sha256:b0b9ed95cbf7c8b7073f17b9591811f5c001e33c7cfd066ca83ce8a07c576f9c"
url = "https://github.com/charmbracelet/gum/releases/download/v0.17.0/gum_0.17.0_Linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/charmbracelet/gum/releases/assets/290080957"
[tools.gum."platforms.linux-x64"]
checksum = "sha256:69ee169bd6387331928864e94d47ed01ef649fbfe875baed1bbf27b5377a6fdb"
url = "https://github.com/charmbracelet/gum/releases/download/v0.17.0/gum_0.17.0_Linux_x86_64.tar.gz"
url_api = "https://api.github.com/repos/charmbracelet/gum/releases/assets/290080949"
[tools.gum."platforms.linux-x64-musl"]
checksum = "sha256:69ee169bd6387331928864e94d47ed01ef649fbfe875baed1bbf27b5377a6fdb"
url = "https://github.com/charmbracelet/gum/releases/download/v0.17.0/gum_0.17.0_Linux_x86_64.tar.gz"
url_api = "https://api.github.com/repos/charmbracelet/gum/releases/assets/290080949"
[tools.gum."platforms.macos-arm64"]
checksum = "sha256:e2a4b8596efa05821d8c58d0c1afbcd7ad1699ba69c689cc3ff23a4a99c8b237"
url = "https://github.com/charmbracelet/gum/releases/download/v0.17.0/gum_0.17.0_Darwin_arm64.tar.gz"
url_api = "https://api.github.com/repos/charmbracelet/gum/releases/assets/290080948"
[tools.gum."platforms.macos-x64"]
checksum = "sha256:cd66576aeebe6cd19c771863c7e8d696e0e1d5387d1e7075666baa67c2052e53"
url = "https://github.com/charmbracelet/gum/releases/download/v0.17.0/gum_0.17.0_Darwin_x86_64.tar.gz"
url_api = "https://api.github.com/repos/charmbracelet/gum/releases/assets/290080970"
[tools.gum."platforms.windows-x64"]
checksum = "sha256:b2be80531c6babc8d4e0e6ca95773d58118a2e1582ae006aace08dbc55503072"
url = "https://github.com/charmbracelet/gum/releases/download/v0.17.0/gum_0.17.0_Windows_x86_64.zip"
url_api = "https://api.github.com/repos/charmbracelet/gum/releases/assets/290080922"
[[tools.hk]]
version = "1.46.0"
backend = "aqua:jdx/hk"
[tools.hk."platforms.linux-arm64"]
checksum = "sha256:bad1b4e52cce2147646d943baa06a7bdb3d182ae0876853897a72225626411ae"
url = "https://github.com/jdx/hk/releases/download/v1.46.0/hk-aarch64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/431420599"
[tools.hk."platforms.linux-arm64-musl"]
checksum = "sha256:ad11b69485096ec5b1822f5bad298d2a44664b85d10d0308c812473b17b1321a"
url = "https://github.com/jdx/hk/releases/download/v1.46.0/hk-aarch64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/431420602"
[tools.hk."platforms.linux-x64"]
checksum = "sha256:85b2cc167443cd27b49e323ef9b9d1a946d4bc18196eccb66112842d30fb90cb"
url = "https://github.com/jdx/hk/releases/download/v1.46.0/hk-x86_64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/431420608"
[tools.hk."platforms.linux-x64-musl"]
checksum = "sha256:4ff45e1bfc9672b1b00572b4a50fac3b57e4add622ed56e9e2587745299932eb"
url = "https://github.com/jdx/hk/releases/download/v1.46.0/hk-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/431420609"
[tools.hk."platforms.macos-arm64"]
checksum = "sha256:9db3fac25754cfb929dc3f92b294fffdb966d4e838b8e0adeaf5b9b7eccc4f6c"
url = "https://github.com/jdx/hk/releases/download/v1.46.0/hk-aarch64-apple-darwin.tar.gz"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/431420600"
[tools.hk."platforms.windows-x64"]
checksum = "sha256:5af7e769acb7f70d8630ed53ae1fb2cc4b205117f29df5d83619fa0ff72a3bf1"
url = "https://github.com/jdx/hk/releases/download/v1.46.0/hk-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/jdx/hk/releases/assets/431420604"
[[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-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.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.macos-x64"]
checksum = "sha256:e94b266e3c26690550006abe63152b782280f4e14374accdf04cbde844f00bc0"
url = "https://github.com/jqlang/jq/releases/download/jq-1.8.2/jq-macos-amd64"
url_api = "https://api.github.com/repos/jqlang/jq/releases/assets/453012782"
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.melange]]
version = "0.56.5"
backend = "aqua:chainguard-dev/melange"
[tools.melange."platforms.linux-arm64"]
checksum = "sha256:3b8565a5d924df0a7a7e61895f62972017f5613bead2d45218e0e4d47f7601c1"
url = "https://github.com/chainguard-dev/melange/releases/download/v0.56.5/melange_0.56.5_linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/chainguard-dev/melange/releases/assets/499425347"
[tools.melange."platforms.linux-arm64-musl"]
checksum = "sha256:3b8565a5d924df0a7a7e61895f62972017f5613bead2d45218e0e4d47f7601c1"
url = "https://github.com/chainguard-dev/melange/releases/download/v0.56.5/melange_0.56.5_linux_arm64.tar.gz"
url_api = "https://api.github.com/repos/chainguard-dev/melange/releases/assets/499425347"
[tools.melange."platforms.linux-x64"]
checksum = "sha256:40e17d259c9fd7bce8e000a59239d7b9ebf13971117334ad117ae6eefd98f92b"
url = "https://github.com/chainguard-dev/melange/releases/download/v0.56.5/melange_0.56.5_linux_amd64.tar.gz"
url_api = "https://api.github.com/repos/chainguard-dev/melange/releases/assets/499425308"
[tools.melange."platforms.linux-x64-musl"]
checksum = "sha256:40e17d259c9fd7bce8e000a59239d7b9ebf13971117334ad117ae6eefd98f92b"
url = "https://github.com/chainguard-dev/melange/releases/download/v0.56.5/melange_0.56.5_linux_amd64.tar.gz"
url_api = "https://api.github.com/repos/chainguard-dev/melange/releases/assets/499425308"
[tools.melange."platforms.macos-arm64"]
checksum = "sha256:aea875ca20e1998dcae017df9eb466b5f19d575e26f70a2543fae940a5e9d8a0"
url = "https://github.com/chainguard-dev/melange/releases/download/v0.56.5/melange_0.56.5_darwin_arm64.tar.gz"
url_api = "https://api.github.com/repos/chainguard-dev/melange/releases/assets/499425307"
[tools.melange."platforms.macos-x64"]
checksum = "sha256:9decc23c8654f934feb57eee20cb55a79aac9a6e45f59b6f8d8ce19ae2742a01"
url = "https://github.com/chainguard-dev/melange/releases/download/v0.56.5/melange_0.56.5_darwin_amd64.tar.gz"
url_api = "https://api.github.com/repos/chainguard-dev/melange/releases/assets/499425305"
[[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-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.macos-arm64"]
checksum = "sha256:39189dab4eeb15706c424af0ac08a3044c9e48f7db12a7d77f6b7aafc7dd5df6"
url = "https://nodejs.org/dist/v24.16.0/node-v24.16.0-darwin-arm64.tar.gz"
[tools.node."platforms.macos-x64"]
checksum = "sha256:298b4c7b3cb80765c8703e42b90324a4ece3b6634947b89e769c3c980ab55185"
url = "https://nodejs.org/dist/v24.16.0/node-v24.16.0-darwin-x64.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."npm:@playwright/cli"]]
version = "0.1.17"
backend = "npm:@playwright/cli"
[[tools.pitchfork]]
version = "2.20.0"
backend = "aqua:jdx/pitchfork"
[tools.pitchfork."platforms.linux-arm64"]
checksum = "sha256:cfa5db42b8a3c068c88f78b60f47e64f8bf7c2841c26b80628770f9844e3f7d5"
url = "https://github.com/jdx/pitchfork/releases/download/v2.20.0/pitchfork-aarch64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/pitchfork/releases/assets/499131744"
[tools.pitchfork."platforms.linux-x64"]
checksum = "sha256:ad9011369dd5ab3b77af2d70e9930d6058c3f58c1e3867dc902960ee089519a2"
url = "https://github.com/jdx/pitchfork/releases/download/v2.20.0/pitchfork-x86_64-unknown-linux-gnu.tar.gz"
url_api = "https://api.github.com/repos/jdx/pitchfork/releases/assets/499131174"
[tools.pitchfork."platforms.macos-arm64"]
checksum = "sha256:07d27b5dc3dc998de9e68a2a213fd7b186b3f7031c5dd12bb95a2a0903d374fe"
url = "https://github.com/jdx/pitchfork/releases/download/v2.20.0/pitchfork-aarch64-apple-darwin.tar.gz"
url_api = "https://api.github.com/repos/jdx/pitchfork/releases/assets/499133563"
[tools.pitchfork."platforms.windows-x64"]
checksum = "sha256:234b17756a2c39dccaa2cfcef9998702a8c2cc176bfa6cf63f7cce7d874fb763"
url = "https://github.com/jdx/pitchfork/releases/download/v2.20.0/pitchfork-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/jdx/pitchfork/releases/assets/499137411"
[[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-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.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.macos-x64"]
checksum = "sha256:5b74b903234047960144f66f2cebdd12d267d9b98e8155ed91d2ae5ed27e2d1f"
url = "https://github.com/apple/pkl/releases/download/0.32.1/pkl-macos-amd64"
url_api = "https://api.github.com/repos/apple/pkl/releases/assets/487426599"
[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.ruff]]
version = "0.16.1"
backend = "aqua:astral-sh/ruff"
[tools.ruff."platforms.linux-arm64"]
checksum = "sha256:5929d9f37fc518a3825f33a76ad8092c0555ca045ca1dbf5e680038a402c840c"
url = "https://github.com/astral-sh/ruff/releases/download/0.16.1/ruff-aarch64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/astral-sh/ruff/releases/assets/495779006"
provenance = "github-attestations"
[tools.ruff."platforms.linux-arm64-musl"]
checksum = "sha256:5929d9f37fc518a3825f33a76ad8092c0555ca045ca1dbf5e680038a402c840c"
url = "https://github.com/astral-sh/ruff/releases/download/0.16.1/ruff-aarch64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/astral-sh/ruff/releases/assets/495779006"
provenance = "github-attestations"
[tools.ruff."platforms.linux-x64"]
checksum = "sha256:23469683052cd2db1589f15032dd1751b2a3f212062e9fc901b0776d25fb36bc"
url = "https://github.com/astral-sh/ruff/releases/download/0.16.1/ruff-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/astral-sh/ruff/releases/assets/495779139"
provenance = "github-attestations"
[tools.ruff."platforms.linux-x64-musl"]
checksum = "sha256:23469683052cd2db1589f15032dd1751b2a3f212062e9fc901b0776d25fb36bc"
url = "https://github.com/astral-sh/ruff/releases/download/0.16.1/ruff-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/astral-sh/ruff/releases/assets/495779139"
provenance = "github-attestations"
[tools.ruff."platforms.macos-arm64"]
checksum = "sha256:a8df4e8e9f22e3b0ae0b9f165ddaafb7e34df692197a6c1a361e7426f90681d5"
url = "https://github.com/astral-sh/ruff/releases/download/0.16.1/ruff-aarch64-apple-darwin.tar.gz"
url_api = "https://api.github.com/repos/astral-sh/ruff/releases/assets/495778992"
provenance = "github-attestations"
[tools.ruff."platforms.macos-x64"]
checksum = "sha256:00396fb9db4cb04e07ad277e6b10d845e6767f0a2aae67e1a57aa65fa01334f0"
url = "https://github.com/astral-sh/ruff/releases/download/0.16.1/ruff-x86_64-apple-darwin.tar.gz"
url_api = "https://api.github.com/repos/astral-sh/ruff/releases/assets/495779121"
provenance = "github-attestations"
[tools.ruff."platforms.windows-x64"]
checksum = "sha256:f37898d133acba7df8cbd130abc3b58b98243d7f3ab751087193dde8887955c4"
url = "https://github.com/astral-sh/ruff/releases/download/0.16.1/ruff-x86_64-pc-windows-msvc.zip"
url_api = "https://api.github.com/repos/astral-sh/ruff/releases/assets/495779128"
provenance = "github-attestations"
[[tools.uv]]
version = "0.12.1"
backend = "aqua:astral-sh/uv"
[tools.uv."platforms.linux-arm64"]
checksum = "sha256:ce218dad9eb48a39dd86160bec6291fac7275f20a9cabcc4bc10dd2c757208f8"
url = "https://github.com/astral-sh/uv/releases/download/0.12.1/uv-aarch64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/astral-sh/uv/releases/assets/497097080"
provenance = "github-attestations"
[tools.uv."platforms.linux-arm64-musl"]
checksum = "sha256:ce218dad9eb48a39dd86160bec6291fac7275f20a9cabcc4bc10dd2c757208f8"
url = "https://github.com/astral-sh/uv/releases/download/0.12.1/uv-aarch64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/astral-sh/uv/releases/assets/497097080"
provenance = "github-attestations"
[tools.uv."platforms.linux-x64"]
checksum = "sha256:47823f814693bab8623308341369190de30b5c621eec5b1ee20352eae8c7982c"
url = "https://github.com/astral-sh/uv/releases/download/0.12.1/uv-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/astral-sh/uv/releases/assets/497097157"
provenance = "github-attestations"
[tools.uv."platforms.linux-x64-musl"]
checksum = "sha256:47823f814693bab8623308341369190de30b5c621eec5b1ee20352eae8c7982c"
url = "https://github.com/astral-sh/uv/releases/download/0.12.1/uv-x86_64-unknown-linux-musl.tar.gz"
url_api = "https://api.github.com/repos/astral-sh/uv/releases/assets/497097157"
provenance = "github-attestations"
[tools.uv."platforms.macos-arm64"]
checksum = "sha256:77d2906988e8074fd43f2f329ec452ebbf9b0c257ba1c66451c71de70a6baf42"
url = "https://github.com/astral-sh/uv/releases/download/0.12.1/uv-aarch64-apple-darwin.tar.gz"
url_api = "https://api.github.com/repos/astral-sh/uv/releases/assets/497097062"
provenance = "github-attestations"
[tools.uv."platforms.macos-x64"]
checksum = "sha256:69d9f9a00337f25a50dcb13882052da08b8469bac11091c98c5694c3c6721467"
url = "https://github.com/astral-sh/uv/releases/download/0.12.1/uv-x86_64-apple-darwin.tar.gz"
url_api = "https://api.github.com/repos/astral-sh/uv/releases/assets/497097144"
provenance = "github-attestations"
[tools.uv."platforms.windows-x64"]