-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo-sources.yml
1104 lines (1104 loc) · 51.8 KB
/
go-sources.yml
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
# Workaround for Go modules generated by github.com/dennwc/flatpak-go-mod
- dest: vendor
path: modules.txt
type: file
- dest: vendor/bazil.org/fuse
sha256: 19365a1af7ccf66edf0a454e609133c52e71391c1756e381f988b716afe667cd
strip-components: 2
type: archive
url: https://proxy.golang.org/bazil.org/fuse/@v/v0.0.0-20230120002735-62a210ff1fd5.zip
- dest: vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore
sha256: 3481e301211bb2f15b3afe1d1d12932b6962de63b99272ffad577c1449fde9a9
strip-components: 5
type: archive
url: https://proxy.golang.org/github.com/!azure/azure-sdk-for-go/sdk/azcore/@v/v1.16.0.zip
- dest: vendor/github.com/Azure/azure-sdk-for-go/sdk/azidentity
sha256: ced9c7cbdd219a758f5398d8f5915be44f3b0ca00b9a349a6b096082db6feb5a
strip-components: 5
type: archive
url: https://proxy.golang.org/github.com/!azure/azure-sdk-for-go/sdk/azidentity/@v/v1.8.0.zip
- dest: vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azblob
sha256: a248c1b377cbdb1f9b80fbc7ce27ffc151d65678c364ce4058d7825d6130c4e2
strip-components: 6
type: archive
url: https://proxy.golang.org/github.com/!azure/azure-sdk-for-go/sdk/storage/azblob/@v/v1.5.0.zip
- dest: vendor/github.com/Azure/azure-sdk-for-go/sdk/storage/azfile
sha256: e6d893e12dae691bdac5e41634c413af47b116d053df7b16c1d37eadcaa5543c
strip-components: 6
type: archive
url: https://proxy.golang.org/github.com/!azure/azure-sdk-for-go/sdk/storage/azfile/@v/v1.4.0.zip
- dest: vendor/github.com/Azure/go-ntlmssp
sha256: cc6d4e9caf938a71c9217f3aa8bdbb1c072faff3444bb680a2759c947da2085c
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/!azure/go-ntlmssp/@v/v0.0.0-20221128193559-754e69321358.zip
- dest: vendor/github.com/Files-com/files-sdk-go/v3
sha256: 1af3047b40f201a95f552b313669f1c8285c4d73394e36ef03de7f0ac46c9972
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/!files-com/files-sdk-go/v3/@v/v3.2.97.zip
- dest: vendor/github.com/Max-Sum/base32768
sha256: 884da69f365e677c1f1aa18e5404ae79324428c8063f61e9b5f01f29274fb997
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/!max-!sum/base32768/@v/v0.0.0-20230304063302-18e6ce5945fd.zip
- dest: vendor/github.com/a8m/tree
sha256: f80124210d32debcfbc545727eee84cad848c24df45ff3aed4df6981d5b3cd33
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/a8m/tree/@v/v0.0.0-20240104212747-2c8764a5f17e.zip
- dest: vendor/github.com/aalpar/deheap
sha256: 05e2db241230f928e42f75cf896fb74cfedda0db3c69b75f485aebe0e136a6b6
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/aalpar/deheap/@v/v0.0.0-20210914013432-0cc84d79dec3.zip
- dest: vendor/github.com/abbot/go-http-auth
sha256: 8204bca24734f55f179dd1c0b820ae5be83151268693a147086f33cd2d4d473c
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/abbot/go-http-auth/@v/v0.4.0.zip
- dest: vendor/github.com/anacrolix/dms
sha256: 2602d4ab868118db2138ce92cc41f076481e273ad0e4b88d37f81d20c9a690a6
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/anacrolix/dms/@v/v1.7.1.zip
- dest: vendor/github.com/anacrolix/log
sha256: d18e75b879afe64a4b3b20b26c911bee3ae10d6da66e0e1d5636c401a5885faf
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/anacrolix/log/@v/v0.16.0.zip
- dest: vendor/github.com/atotto/clipboard
sha256: d67b2c36c662751309fd2ec351df3651584bea840bd27be9a90702c3a238b43f
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/atotto/clipboard/@v/v0.1.4.zip
- dest: vendor/github.com/aws/aws-sdk-go-v2
sha256: 04d47311973ad113d7150ed287b409a048b12e54c8c5872e04e47d5ddad15810
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/aws/aws-sdk-go-v2/@v/v1.32.6.zip
- dest: vendor/github.com/aws/aws-sdk-go-v2/config
sha256: 2ae4186890d4e337b05c2ea8e8e7136364472378ee38980836a261b5349bbd13
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/aws/aws-sdk-go-v2/config/@v/v1.28.6.zip
- dest: vendor/github.com/aws/aws-sdk-go-v2/credentials
sha256: 69727a0cc784b4311b584be46eb705b0c620e68ee30074455099dfd78738ce21
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/aws/aws-sdk-go-v2/credentials/@v/v1.17.47.zip
- dest: vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager
sha256: 9d66e19ef38707670be2da21b0e5d11704967455ad6ad3ca46fd11eb73d12e40
strip-components: 6
type: archive
url: https://proxy.golang.org/github.com/aws/aws-sdk-go-v2/feature/s3/manager/@v/v1.17.43.zip
- dest: vendor/github.com/aws/aws-sdk-go-v2/service/s3
sha256: 22ea398d83c96004fda9b0e2ad532129ed7e71e72e03cea470151c41aa5d19ec
strip-components: 5
type: archive
url: https://proxy.golang.org/github.com/aws/aws-sdk-go-v2/service/s3/@v/v1.71.0.zip
- dest: vendor/github.com/aws/smithy-go
sha256: e9d7b30be48a0432697d422dda9e0daa912b4572a05417808b9d65427d440085
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/aws/smithy-go/@v/v1.22.1.zip
- dest: vendor/github.com/buengese/sgzip
sha256: 8df7fb596efd83a7d87d34946bbc37fcd11d1fb11dbe4c5ec17a00ba546160d7
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/buengese/sgzip/@v/v0.1.1.zip
- dest: vendor/github.com/cloudinary/cloudinary-go/v2
sha256: 08105978879f10e79048b4f56e914f2d8d01d179ec5677d27e7a1616d1861de8
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/cloudinary/cloudinary-go/v2/@v/v2.9.0.zip
- dest: vendor/github.com/cloudsoda/go-smb2
sha256: 852ac3e4193a4b797b4f38f94d6e953bd9702d807e78429e8117a530c1fd133e
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/cloudsoda/go-smb2/@v/v0.0.0-20241223203758-52b943b88fd6.zip
- dest: vendor/github.com/colinmarc/hdfs/v2
sha256: b996584b71a7e8f337bb528cce3a28740687251d0dde7624b5487c447a7439f9
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/colinmarc/hdfs/v2/@v/v2.4.0.zip
- dest: vendor/github.com/coreos/go-semver
sha256: e72820542b5913afe0a52e956e0b3834e9fbb080641fed183117f862fab74e8a
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/coreos/go-semver/@v/v0.3.1.zip
- dest: vendor/github.com/coreos/go-systemd/v22
sha256: 4c44e3a6b84de4db393e341537c7124031fa98d5f98860ad31b32b4890f2234c
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/coreos/go-systemd/v22/@v/v22.5.0.zip
- dest: vendor/github.com/dop251/scsu
sha256: 3f7d44f2a38188fcadfdbc4b5d9ff9b214d787dbf85a2256ec863125f99e8bd1
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/dop251/scsu/@v/v0.0.0-20220106150536-84ac88021d00.zip
- dest: vendor/github.com/dropbox/dropbox-sdk-go-unofficial/v6
sha256: 4777b4233b3b40e14647a31a73e0b71f3216c433c286ac620d9f28d3c950b66f
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/dropbox/dropbox-sdk-go-unofficial/v6/@v/v6.0.5.zip
- dest: vendor/github.com/gabriel-vasile/mimetype
sha256: 16030ea4c0858b642f69b065c2981d47805891f47ddd5b903e4c64835454635d
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/gabriel-vasile/mimetype/@v/v1.4.7.zip
- dest: vendor/github.com/gdamore/tcell/v2
sha256: 16d31bfd4446d1de041b3cd7a98d0e5a7fef9708e66d788f4a55517df864fbc6
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/gdamore/tcell/v2/@v/v2.7.4.zip
- dest: vendor/github.com/go-chi/chi/v5
sha256: fa8a5399419187b3b29218067214d5e3fdfe23e2bb4ad1390df51c3e8741d7aa
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/go-chi/chi/v5/@v/v5.1.0.zip
- dest: vendor/github.com/go-darwin/apfs
sha256: 952d30835210f3ae24d38a2d79d19a70819efee267248dfa37319f5b0eacf1d3
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/go-darwin/apfs/@v/v0.0.0-20211011131704-f84b94dbf348.zip
- dest: vendor/github.com/go-git/go-billy/v5
sha256: 9ff4e163bdc9fa957bdeb1fc86ef27fc06905da4df5f6d66a4e76775c08280c1
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/go-git/go-billy/v5/@v/v5.6.0.zip
- dest: vendor/github.com/google/uuid
sha256: d0f02f377217f42702e259684e06441edbf5140dddcc34ba9bea56038b38a6ed
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/google/uuid/@v/v1.6.0.zip
- dest: vendor/github.com/hanwen/go-fuse/v2
sha256: ae678ea6f6c6feafafafdf6f6e3fdd316bfcd0c243f30a37eea9d274bf7c65d7
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/hanwen/go-fuse/v2/@v/v2.7.2.zip
- dest: vendor/github.com/henrybear327/Proton-API-Bridge
sha256: 0777a9684cd0eb5c8ac0214b6da17a9ae77eac5acd19b730c32f9aed3e930cd1
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/henrybear327/!proton-!a!p!i-!bridge/@v/v1.0.0.zip
- dest: vendor/github.com/henrybear327/go-proton-api
sha256: b42dedf0bf0ecd55f37e72ef7ce8f914cc78430ee53d30b4ac99c2039df42533
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/henrybear327/go-proton-api/@v/v1.0.0.zip
- dest: vendor/github.com/jcmturner/gokrb5/v8
sha256: 8e468a1161302cb12b6e3f16bf31cd3b093f57c14325e11b348df1472860e313
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/jcmturner/gokrb5/v8/@v/v8.4.4.zip
- dest: vendor/github.com/jlaffaye/ftp
sha256: 970680e5af75f269ef62d87cf2173d7d8023b287845b63f0d64bc4b16dd96594
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/jlaffaye/ftp/@v/v0.2.1-0.20240918233326-1b970516f5d3.zip
- dest: vendor/github.com/josephspurrier/goversioninfo
sha256: 5e5d8c1aced1a6f36fdbbb83471c545a4bcc6c9b5ea71aa48f251da16bb96499
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/josephspurrier/goversioninfo/@v/v1.4.1.zip
- dest: vendor/github.com/jzelinskie/whirlpool
sha256: 171380cee0b81436609d30e101fab6b51cd291eb0f1dfb119e840b042b12959c
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/jzelinskie/whirlpool/@v/v0.0.0-20201016144138-0675e54bb004.zip
- dest: vendor/github.com/klauspost/compress
sha256: 88dea800cc6a11ccb9dd2f0dd487f30e8701870abdfc11245e41dcfc9f3d428e
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/klauspost/compress/@v/v1.17.11.zip
- dest: vendor/github.com/koofr/go-httpclient
sha256: 2d0b34ddc40eb46cef1af87d7da4c8591a32995ce4e5905add16095af41ef867
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/koofr/go-httpclient/@v/v0.0.0-20240520111329-e20f8f203988.zip
- dest: vendor/github.com/koofr/go-koofrclient
sha256: 05efdb2708c42de96eb05a710bf146633b7cc0f75166eebe394b0c7251308a00
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/koofr/go-koofrclient/@v/v0.0.0-20221207135200-cbd7fc9ad6a6.zip
- dest: vendor/github.com/mattn/go-colorable
sha256: 08be322dcc584a9fcfde5caf0cf878b4e11cd98f252e32bc704e92c5a4ba9d15
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/mattn/go-colorable/@v/v0.1.13.zip
- dest: vendor/github.com/mattn/go-runewidth
sha256: 179d2d900c76ee3560fbeda60d0237a3be6acb734d0cb7423b55e5ccb0cedbca
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/mattn/go-runewidth/@v/v0.0.16.zip
- dest: vendor/github.com/minio/minio-go/v7
sha256: 7e43892ac959cd468a8f037b83f91a682b54290846b740f96fe5cdc336445f9d
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/minio/minio-go/v7/@v/v7.0.74.zip
- dest: vendor/github.com/mitchellh/go-homedir
sha256: fffec361fc7e776bb71433560c285ee2982d2c140b8f5bfba0db6033c0ade184
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/mitchellh/go-homedir/@v/v1.1.0.zip
- dest: vendor/github.com/moby/sys/mountinfo
sha256: 94f79687bc3b72ca4cc60fafda851454fefc0ef04bdb4499e8c7c2b2e231b5d3
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/moby/sys/mountinfo/@v/v0.7.2.zip
- dest: vendor/github.com/ncw/swift/v2
sha256: a9b1b4879747ed04ab5d76a00cd80cf5ccb0a7e32b7ba866a433286e4c62e16c
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/ncw/swift/v2/@v/v2.0.3.zip
- dest: vendor/github.com/oracle/oci-go-sdk/v65
sha256: c02f154382cdf486e7d5f6f257d133619840b1836ea41ea7e9b4cf242ed52ac2
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/oracle/oci-go-sdk/v65/@v/v65.80.0.zip
- dest: vendor/github.com/patrickmn/go-cache
sha256: d5d1c13e3c9cfeb04a943f656333ec68627dd6ce136af67e2aa5881ad7353c55
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/patrickmn/go-cache/@v/v2.1.0+incompatible.zip
- dest: vendor/github.com/pkg/sftp
sha256: a4ca3ac339d635181b3de5da3e5dd2afd8e19b401892336a2d0561b53bab4cf8
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/pkg/sftp/@v/v1.13.7.zip
- dest: vendor/github.com/pmezard/go-difflib
sha256: 24ff45e356f638a53bd0c89fff961fbeaecfdb0dc5e482ceed0a2230e0e5f3b7
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/pmezard/go-difflib/@v/v1.0.1-0.20181226105442-5d4384ee4fb2.zip
- dest: vendor/github.com/prometheus/client_golang
sha256: b76de10864f49c87a347b9a3e6fe606c1f93ed091de7d0d1d17a5967a60f5ce2
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/prometheus/client_golang/@v/v1.20.5.zip
- dest: vendor/github.com/putdotio/go-putio/putio
sha256: f69549147425ebbc5cfff2fd75f0dfcf9cfdb2c2ffd1870688915b20641b424a
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/putdotio/go-putio/putio/@v/v0.0.0-20200123120452-16d982cac2b8.zip
- dest: vendor/github.com/quasilyte/go-ruleguard/dsl
sha256: 8770b31a1a936d800b61064c5d7684bbd57923ad51254e2507eaa04c8b75e5c1
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/quasilyte/go-ruleguard/dsl/@v/v0.3.22.zip
- dest: vendor/github.com/rclone/gofakes3
sha256: a15330079615ec1ae170ee93ef6d1e332b1cda7ce47debfc60996e1926a9d5ba
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/rclone/gofakes3/@v/v0.0.4.zip
- dest: vendor/github.com/rfjakob/eme
sha256: 6187089d5d40720c5cfeb4814d735d4b23a038f7da6406f088b83907781f4b57
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/rfjakob/eme/@v/v1.1.2.zip
- dest: vendor/github.com/rivo/uniseg
sha256: b995e4aa0cc1e5779cc61138ac925cb8c1e963e40c80e4b93ee8553812ebb792
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/rivo/uniseg/@v/v0.4.7.zip
- dest: vendor/github.com/rogpeppe/go-internal
sha256: d4539e716c2b7f2824584e4c4a17f64c508bd6e5359106a406a7e23e77109cde
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/rogpeppe/go-internal/@v/v1.12.0.zip
- dest: vendor/github.com/shirou/gopsutil/v4
sha256: 75b721d15f957f506e889d07fd7ccdf542b47a21eb9991099e345120f90c2fbf
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/shirou/gopsutil/v4/@v/v4.24.12.zip
- dest: vendor/github.com/sirupsen/logrus
sha256: 4501f4e6b858bfdd997671fcdd2f647a3178b29b6b4d1344caa7c07517121dd0
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/sirupsen/logrus/@v/v1.9.3.zip
- dest: vendor/github.com/skratchdot/open-golang
sha256: 3ad7f856621f78b370a47bb05ce12c31bdee1014e596b7f565ee20dc8ac80c66
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/skratchdot/open-golang/@v/v0.0.0-20200116055534-eef842397966.zip
- dest: vendor/github.com/spf13/cobra
sha256: bf27a276f87257c93bc057309df30265a19beefc3d5fc887cbd8fc99ad35466a
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/spf13/cobra/@v/v1.8.1.zip
- dest: vendor/github.com/spf13/pflag
sha256: fc6e704f2f6a84ddcdce6de0404e5340fa20c8676181bf5d381b17888107ba84
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/spf13/pflag/@v/v1.0.5.zip
- dest: vendor/github.com/stretchr/testify
sha256: 36c87573527a97ce97fc15ce2a101e65e5ebb350db142d09f633580cb8d5c839
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/stretchr/testify/@v/v1.10.0.zip
- dest: vendor/github.com/t3rm1n4l/go-mega
sha256: db3bc3365b81b3a0640358afddb1683c766bf34d7685b5ca5fe048e342d8efac
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/t3rm1n4l/go-mega/@v/v0.0.0-20241213150454-ec0027fb0002.zip
- dest: vendor/github.com/unknwon/goconfig
sha256: 1a9cf2086052925a275d5d25683bce7fd2f4458423e6888a447dba618967dae3
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/unknwon/goconfig/@v/v1.0.0.zip
- dest: vendor/github.com/willscott/go-nfs
sha256: 1d2c4f0b6a81c61fded860770e45a65ebc4ebdd17758a3bf37360ac0e6fd1674
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/willscott/go-nfs/@v/v0.0.3-0.20240425122109-91bc38957cc9.zip
- dest: vendor/github.com/winfsp/cgofuse
sha256: 6ecc44ea8c8b4f7c61add36f60ca9d60f8b0d5ac1333f85564d43409072a2cb8
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/winfsp/cgofuse/@v/v1.5.1-0.20221118130120-84c0898ad2e0.zip
- dest: vendor/github.com/xanzy/ssh-agent
sha256: 19a86c2623b20cc98687bddd89e3f023db0ca51c8bc9e38b9ad9c56e5b7d110d
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/xanzy/ssh-agent/@v/v0.3.3.zip
- dest: vendor/github.com/youmark/pkcs8
sha256: cdcf5e96850f9f60bc96ab512e4bd06ee19dd2dbe855260c3589c6c79a1bcfb5
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/youmark/pkcs8/@v/v0.0.0-20240726163527-a2c0da244d78.zip
- dest: vendor/github.com/yunify/qingstor-sdk-go/v3
sha256: d691f22df98c43a35ff15c138e2436c5bcab66568f7141d399fed35f2a4a7fba
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/yunify/qingstor-sdk-go/v3/@v/v3.2.0.zip
- dest: vendor/github.com/zeebo/blake3
sha256: 150c3435afaf326186d6cfdd9a11d76f4b902c588752f1f7393b4367339b8d7c
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/zeebo/blake3/@v/v0.2.3.zip
- dest: vendor/go.etcd.io/bbolt
sha256: ede5613b5c996a912a75032463a696e3be4220ff7e150e66c8464f7f2510fe2f
strip-components: 2
type: archive
url: https://proxy.golang.org/go.etcd.io/bbolt/@v/v1.3.10.zip
- dest: vendor/goftp.io/server/v2
sha256: 0a20812813a5f696ac8d007939bce08bcb9cf510a57d468073f1607d2c754ad4
strip-components: 3
type: archive
url: https://proxy.golang.org/goftp.io/server/v2/@v/v2.0.1.zip
- dest: vendor/golang.org/x/crypto
sha256: 7cbc5fbc206b07db3c691ad59bc1b31f2c32a1dae2b04c9a7772f93a696381bf
strip-components: 3
type: archive
url: https://proxy.golang.org/golang.org/x/crypto/@v/v0.31.0.zip
- dest: vendor/golang.org/x/net
sha256: a85014e77369f99c3f9eebe1289b4d0757d58248ca12337642923818ae22ca19
strip-components: 3
type: archive
url: https://proxy.golang.org/golang.org/x/net/@v/v0.33.0.zip
- dest: vendor/golang.org/x/oauth2
sha256: fd0fa73afb9f7a1099bea44c12dc2b8078326f16d3b34ebebc174efdf035bce3
strip-components: 3
type: archive
url: https://proxy.golang.org/golang.org/x/oauth2/@v/v0.24.0.zip
- dest: vendor/golang.org/x/sync
sha256: 94ea75ea625ecb8d81ab473a2d7e03433e63083768cd27d48a03f8c1c9da3d8d
strip-components: 3
type: archive
url: https://proxy.golang.org/golang.org/x/sync/@v/v0.10.0.zip
- dest: vendor/golang.org/x/sys
sha256: 0ed47a83fe7d7a7e743e815172bc10c1ac0ed0d31ebb095e75717428e09aa895
strip-components: 3
type: archive
url: https://proxy.golang.org/golang.org/x/sys/@v/v0.28.0.zip
- dest: vendor/golang.org/x/text
sha256: be3db791651af6f2cb0225aa5d5578c23149b2017246ba8e59586080baadd612
strip-components: 3
type: archive
url: https://proxy.golang.org/golang.org/x/text/@v/v0.21.0.zip
- dest: vendor/golang.org/x/time
sha256: 2509eb9d0e0f0c819d6538b51cd7ecba1be25a759a9186fda4e9784ecbfb9684
strip-components: 3
type: archive
url: https://proxy.golang.org/golang.org/x/time/@v/v0.8.0.zip
- dest: vendor/google.golang.org/api
sha256: 39830fdef971197afe3df5b3d8cc548a4414043b1844a3bd4d9740792862cfac
strip-components: 2
type: archive
url: https://proxy.golang.org/google.golang.org/api/@v/v0.211.0.zip
- dest: vendor/gopkg.in/validator.v2
sha256: 71ba069ff408d982210bd0c9cedc2b42582d7fc7eeee8d5fca369b4574e5215c
strip-components: 2
type: archive
url: https://proxy.golang.org/gopkg.in/validator.v2/@v/v2.0.1.zip
- dest: vendor/gopkg.in/yaml.v2
sha256: ede49e27c4cca6cdd2ec719aed8ea4d363710cceb3d411e7a786fbdec0d391fd
strip-components: 2
type: archive
url: https://proxy.golang.org/gopkg.in/yaml.v2/@v/v2.4.0.zip
- dest: vendor/storj.io/uplink
sha256: 08a0e8604b045e58366b9bd981feaf0d9e081abf90a08f1c4efae0f8d56e023b
strip-components: 2
type: archive
url: https://proxy.golang.org/storj.io/uplink/@v/v1.13.1.zip
- dest: vendor/cloud.google.com/go/auth
sha256: 39990cc57167a24d422cc4558bc7c6b0a7a77fb25c96260fa9c6ce508db12c66
strip-components: 3
type: archive
url: https://proxy.golang.org/cloud.google.com/go/auth/@v/v0.12.1.zip
- dest: vendor/cloud.google.com/go/auth/oauth2adapt
sha256: b0fac99ce1cffe9a03938d5d546c4d06e4bc249a86ec0dc0af2f719bd4a49740
strip-components: 4
type: archive
url: https://proxy.golang.org/cloud.google.com/go/auth/oauth2adapt/@v/v0.2.6.zip
- dest: vendor/cloud.google.com/go/compute/metadata
sha256: 24f5ebb943dbebdf894a83aeb2d00fe344f2d381ab459bede58ab2728240ccfa
strip-components: 4
type: archive
url: https://proxy.golang.org/cloud.google.com/go/compute/metadata/@v/v0.5.2.zip
- dest: vendor/github.com/Azure/azure-sdk-for-go/sdk/internal
sha256: 0a9b4fe658e348b9a6535b1ae0698fa5cf5ba9ba3710530edbdc763eeffe2d24
strip-components: 5
type: archive
url: https://proxy.golang.org/github.com/!azure/azure-sdk-for-go/sdk/internal/@v/v1.10.0.zip
- dest: vendor/github.com/AzureAD/microsoft-authentication-library-for-go
sha256: 895ac3948492180ed21eabe651bebe45c9d99b92c2738206759d6faf4f430d26
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/!azure!a!d/microsoft-authentication-library-for-go/@v/v1.2.2.zip
- dest: vendor/github.com/ProtonMail/bcrypt
sha256: 2d641d9fcf6c238813e254df6bb93724dc46543516df4071efaf22f68ba337b0
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/!proton!mail/bcrypt/@v/v0.0.0-20211005172633-e235017c1baf.zip
- dest: vendor/github.com/ProtonMail/gluon
sha256: 3fa88ebf957192f2061c9bdcd2f8e313311e131246d23dedc2a596682cbb4645
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/!proton!mail/gluon/@v/v0.17.1-0.20230724134000-308be39be96e.zip
- dest: vendor/github.com/ProtonMail/go-mime
sha256: 89bf28de3cc4549f6982eb8431f33185d6be88eb6e1f165f2bfb69888fdf4ce0
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/!proton!mail/go-mime/@v/v0.0.0-20230322103455-7d82a3887f2f.zip
- dest: vendor/github.com/ProtonMail/go-srp
sha256: aaac72038a9ee29162137acf24e1c17ef0c2601d5fcaefd434c3da57be4471b8
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/!proton!mail/go-srp/@v/v0.0.7.zip
- dest: vendor/github.com/ProtonMail/gopenpgp/v2
sha256: 46d6089a8d62ab021d9852ec22611a8edbeaa3aa7beed50074bba05a3f1428c1
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/!proton!mail/gopenpgp/v2/@v/v2.7.4.zip
- dest: vendor/github.com/PuerkitoBio/goquery
sha256: 987cbcf5b0bb178bd604d7e003688b7d1b6d2b4420896bb72b1f9118cc6dbb57
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/!puerkito!bio/goquery/@v/v1.8.1.zip
- dest: vendor/github.com/akavel/rsrc
sha256: 4a1f17e289dec94b49610f74b467c7e2053332e856a8766ec8c3e7c3d39af04f
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/akavel/rsrc/@v/v0.10.2.zip
- dest: vendor/github.com/anacrolix/generics
sha256: be8d2537bb54cabf2bced1e6cacc98c9726d992520fe6120d81dd035df5f29d4
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/anacrolix/generics/@v/v0.0.1.zip
- dest: vendor/github.com/andybalholm/cascadia
sha256: dec535cccf58418de6a38909010cfcea9e46475f79aab9f53cd80d133abcdd3a
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/andybalholm/cascadia/@v/v1.3.2.zip
- dest: vendor/github.com/appscode/go-querystring
sha256: 2b5f4c89fad59f1c218a4953b1507b572438fef6d907d4da667882d44e941215
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/appscode/go-querystring/@v/v0.0.0-20170504095604-0126cfb3f1dc.zip
- dest: vendor/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream
sha256: 17217b64392574f65e61a0c49d66f6b6d2035372a058ad4ffcccabf79342f4f2
strip-components: 6
type: archive
url: https://proxy.golang.org/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream/@v/v1.6.7.zip
- dest: vendor/github.com/aws/aws-sdk-go-v2/feature/ec2/imds
sha256: 846730485d592fc655ae157f6d1a086ea537a53c5a411a9e4113dab41e3305a1
strip-components: 6
type: archive
url: https://proxy.golang.org/github.com/aws/aws-sdk-go-v2/feature/ec2/imds/@v/v1.16.21.zip
- dest: vendor/github.com/aws/aws-sdk-go-v2/internal/configsources
sha256: 7143bc6d29122624d931eb11f6ae8c700229eee7f6532633063058a9ac2847d9
strip-components: 5
type: archive
url: https://proxy.golang.org/github.com/aws/aws-sdk-go-v2/internal/configsources/@v/v1.3.25.zip
- dest: vendor/github.com/aws/aws-sdk-go-v2/internal/endpoints/v2
sha256: 7f8c1b940776f21edc71ad1cf400faa0a51f0cae73c25f2cb2e432f599c19ef3
strip-components: 6
type: archive
url: https://proxy.golang.org/github.com/aws/aws-sdk-go-v2/internal/endpoints/v2/@v/v2.6.25.zip
- dest: vendor/github.com/aws/aws-sdk-go-v2/internal/ini
sha256: 30ceb160c10eee87c002f89ce5a89100463ec2935a980a3652fc53fff4efe21a
strip-components: 5
type: archive
url: https://proxy.golang.org/github.com/aws/aws-sdk-go-v2/internal/ini/@v/v1.8.1.zip
- dest: vendor/github.com/aws/aws-sdk-go-v2/internal/v4a
sha256: 1af765a0caf35450a8f8d7072451ef77b9dc0770cd5e2c82513f181ba8e45936
strip-components: 5
type: archive
url: https://proxy.golang.org/github.com/aws/aws-sdk-go-v2/internal/v4a/@v/v1.3.25.zip
- dest: vendor/github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding
sha256: 20a09d6b33aa770a98664a16097157d4d13bea16613d3c2f2efc38c40a0b6f78
strip-components: 6
type: archive
url: https://proxy.golang.org/github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding/@v/v1.12.1.zip
- dest: vendor/github.com/aws/aws-sdk-go-v2/service/internal/checksum
sha256: f6017c68986446705cf8ffb551f4e62a8c7252e60bc6629c47f19e14b5b719b8
strip-components: 6
type: archive
url: https://proxy.golang.org/github.com/aws/aws-sdk-go-v2/service/internal/checksum/@v/v1.4.6.zip
- dest: vendor/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url
sha256: f03d18cde7370a047b88b4ae4ad10025cfd0e2853d4b68a002d65171d6902c9d
strip-components: 6
type: archive
url: https://proxy.golang.org/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url/@v/v1.12.6.zip
- dest: vendor/github.com/aws/aws-sdk-go-v2/service/internal/s3shared
sha256: ba321fbb3d90857cb7b9449e7b786e814ae55609c4bd7d9fd49101360e27deee
strip-components: 6
type: archive
url: https://proxy.golang.org/github.com/aws/aws-sdk-go-v2/service/internal/s3shared/@v/v1.18.6.zip
- dest: vendor/github.com/aws/aws-sdk-go-v2/service/sso
sha256: 409d2a33a2b8d7207ca005dd5725d056cd1d80f43ca365d9fd42f9351d4a61e2
strip-components: 5
type: archive
url: https://proxy.golang.org/github.com/aws/aws-sdk-go-v2/service/sso/@v/v1.24.7.zip
- dest: vendor/github.com/aws/aws-sdk-go-v2/service/ssooidc
sha256: a3768201834a22e657fca9a731946fc690938dc9cee15dc71cc0139c3ddfb69b
strip-components: 5
type: archive
url: https://proxy.golang.org/github.com/aws/aws-sdk-go-v2/service/ssooidc/@v/v1.28.6.zip
- dest: vendor/github.com/aws/aws-sdk-go-v2/service/sts
sha256: 8cfa1c46de2db917b8a716b1b35d3be9773b9b3564dcb147ab20389cf4c1ac9a
strip-components: 5
type: archive
url: https://proxy.golang.org/github.com/aws/aws-sdk-go-v2/service/sts/@v/v1.33.2.zip
- dest: vendor/github.com/beorn7/perks
sha256: 25bd9e2d94aca770e6dbc1f53725f84f6af4432f631d35dd2c46f96ef0512f1a
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/beorn7/perks/@v/v1.0.1.zip
- dest: vendor/github.com/bradenaw/juniper
sha256: e48baf3e8c6aaf4d60dbe0625db9a03187735c71244454c55fbeae33128b83c5
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/bradenaw/juniper/@v/v0.15.2.zip
- dest: vendor/github.com/bradfitz/iter
sha256: d105b5659bde8f8a4c011662e7017c869c8674f0e504198ea86365127718b28f
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/bradfitz/iter/@v/v0.0.0-20191230175014-e8f45d346db8.zip
- dest: vendor/github.com/calebcase/tmpfile
sha256: 44bb89c6e03a2cdbb36e7616392ebb96daf0d8bc0d3d91ce3709e62e4636d5e5
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/calebcase/tmpfile/@v/v1.0.3.zip
- dest: vendor/github.com/cespare/xxhash/v2
sha256: 145a26cdc7c49db566017b807c4989ee7f7ddeb569423e9cb99f995fac3621d3
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/cespare/xxhash/v2/@v/v2.3.0.zip
- dest: vendor/github.com/chilts/sid
sha256: 1a317f6b4c4fb11e90f5661c34703ba8b8a4ba248eaf3b4b6fe8a3c11226b9b6
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/chilts/sid/@v/v0.0.0-20190607042430-660e94789ec9.zip
- dest: vendor/github.com/cloudflare/circl
sha256: 4497093cb7544d30e9d5d741a5e62c14fb8989c4271ca0a9a0a03a73570b3b83
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/cloudflare/circl/@v/v1.3.7.zip
- dest: vendor/github.com/cpuguy83/go-md2man/v2
sha256: 9adbaa17f17dbe36ae464d8062acbbfb9cf853bfebed424435a834a2b0bed910
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/cpuguy83/go-md2man/v2/@v/v2.0.4.zip
- dest: vendor/github.com/creasty/defaults
sha256: c2c6d78ab2f60ed8f12514005fbb5bb37ecf7c144178448193accad4e13057ce
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/creasty/defaults/@v/v1.7.0.zip
- dest: vendor/github.com/cronokirby/saferith
sha256: 140b09e60685914ce1b7398d0c77bc5f2b527f96c26a837f97b683f97d6410e8
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/cronokirby/saferith/@v/v0.33.0.zip
- dest: vendor/github.com/davecgh/go-spew
sha256: b4d0923b169b194f0016ec46f3df1ab0c68e27999743e43fe2de59ecb2484128
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/davecgh/go-spew/@v/v1.1.2-0.20180830191138-d8f796af33cc.zip
- dest: vendor/github.com/dustin/go-humanize
sha256: 319404ea84c8a4e2d3d83f30988b006e7dd04976de3e1a1a90484ad94679fa46
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/dustin/go-humanize/@v/v1.0.1.zip
- dest: vendor/github.com/ebitengine/purego
sha256: 13d72d51856b2286270a95bb8dead29fed3c6634e1690d7435de6a26e0f4447a
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/ebitengine/purego/@v/v0.8.1.zip
- dest: vendor/github.com/emersion/go-message
sha256: f3665ab5c47812931ad71a47d6cbba2ac759411b229cbe327ebcdf0adb960e13
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/emersion/go-message/@v/v0.18.0.zip
- dest: vendor/github.com/emersion/go-textwrapper
sha256: d4cb2bcfd03bd5b617b2e9be7c361c9ef889b0d37042da4be2395be2ef5d69e1
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/emersion/go-textwrapper/@v/v0.0.0-20200911093747-65d896831594.zip
- dest: vendor/github.com/emersion/go-vcard
sha256: 598dcbef2e50ad46753daecbb95f7eb9d095e11d38bfb2b9f33b91299068f62a
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/emersion/go-vcard/@v/v0.0.0-20230815062825-8fda7d206ec9.zip
- dest: vendor/github.com/felixge/httpsnoop
sha256: 75aa471311265e9860df0e523400b4650ed0c1a33262786a421f07226792e494
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/felixge/httpsnoop/@v/v1.0.4.zip
- dest: vendor/github.com/flynn/noise
sha256: d5cf735ae2b1b892a5459c29f429cdb816398ce6a4453157aa4114b9ffda772c
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/flynn/noise/@v/v1.0.1.zip
- dest: vendor/github.com/gdamore/encoding
sha256: 638a9832e2f62d118d7c511d86bdae1622a51f331de48a01d929fd24ebe6a2a6
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/gdamore/encoding/@v/v1.0.0.zip
- dest: vendor/github.com/geoffgarside/ber
sha256: e0d31373601af95210ab2dd4ac9638fe71a93baa17447c6ca288e08b90d11901
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/geoffgarside/ber/@v/v1.1.0.zip
- dest: vendor/github.com/go-ini/ini
sha256: d77fe1b537b2e6db4040bd518b4755979006d5af7e82ae035aa2bc5d40c0ff55
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/go-ini/ini/@v/v1.67.0.zip
- dest: vendor/github.com/go-logr/logr
sha256: 9f8926fda6dee61e68522421963d5804baeb10024aa02b318d9bd50fdcfdd7d1
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/go-logr/logr/@v/v1.4.2.zip
- dest: vendor/github.com/go-logr/stdr
sha256: 9dd6893bf700198485ae699640b49bc1efbc6c73b37cb5792a0476e1fd8f7fef
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/go-logr/stdr/@v/v1.2.2.zip
- dest: vendor/github.com/go-ole/go-ole
sha256: bbf5b3bfa227a5daa06eb16ecdecccc0b20e08749bf103afb523fd72764e727a
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/go-ole/go-ole/@v/v1.3.0.zip
- dest: vendor/github.com/go-resty/resty/v2
sha256: 9e6212c6a90936edadf04754df8dfa1b0b154e013bdbf75f94a105d9fa54165e
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/go-resty/resty/v2/@v/v2.11.0.zip
- dest: vendor/github.com/goccy/go-json
sha256: a14a4805bf6043dfd1e0e923d761f126e6c5a86c416f28f57bfebf1f8bde59e3
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/goccy/go-json/@v/v0.10.3.zip
- dest: vendor/github.com/gofrs/flock
sha256: 9ace5b0a05672937904fba1fcb86cb45e7f701e508faeb5f612e243340351dfa
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/gofrs/flock/@v/v0.8.1.zip
- dest: vendor/github.com/gogo/protobuf
sha256: dd2b73f163c8183941626360196c8f844addd95423d341a0412e1b22d0104ff7
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/gogo/protobuf/@v/v1.3.2.zip
- dest: vendor/github.com/golang-jwt/jwt/v5
sha256: ad5cdc5c6bac562a2b890e96347208ffdb30a940243b558465ab7de90913a180
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/golang-jwt/jwt/v5/@v/v5.2.1.zip
- dest: vendor/github.com/google/s2a-go
sha256: 46fa959d6aa83a6871f59fc7d8f90619dcc70a2f33b5e9025c0d5a074677ef3a
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/google/s2a-go/@v/v0.1.8.zip
- dest: vendor/github.com/googleapis/enterprise-certificate-proxy
sha256: 62c3886135ab3c5c34652ef9808f339f939e1692730d789a526af15ee82484de
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/googleapis/enterprise-certificate-proxy/@v/v0.3.4.zip
- dest: vendor/github.com/googleapis/gax-go/v2
sha256: a2bcd7018caa525b9fc71a16a6091b8ee1394f04354749b533b4633dc8c5f060
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/googleapis/gax-go/v2/@v/v2.14.0.zip
- dest: vendor/github.com/gopherjs/gopherjs
sha256: 096bf06513b3607377446f9864eab5099652c0985c1614b7e89ca92cd8989178
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/gopherjs/gopherjs/@v/v0.0.0-20181103185306-d547d1d9531e.zip
- dest: vendor/github.com/gorilla/schema
sha256: 63885f95be210851d623d464698326a202274e191f53f7b7905a150e9cf04494
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/gorilla/schema/@v/v1.4.1.zip
- dest: vendor/github.com/hashicorp/errwrap
sha256: 209ae99bc039443e28e4d6bb66517d1756d9468b7578d31f1b63a28103d8e18c
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/hashicorp/errwrap/@v/v1.1.0.zip
- dest: vendor/github.com/hashicorp/go-cleanhttp
sha256: e9f3dcfcb33172ba499b4f8e888169252d7f1e072082182124a6e2053523f7df
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/hashicorp/go-cleanhttp/@v/v0.5.2.zip
- dest: vendor/github.com/hashicorp/go-multierror
sha256: 972cd841ee51fdeac69c5a301e57f8ea27aebf15fddd7f621d5c240f28c3000c
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/hashicorp/go-multierror/@v/v1.1.1.zip
- dest: vendor/github.com/hashicorp/go-retryablehttp
sha256: 29fa3655abd0a7c91f3a1eb186d309ec24b580afb10d39a3cdfa8cde0e99e0a9
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/hashicorp/go-retryablehttp/@v/v0.7.7.zip
- dest: vendor/github.com/hashicorp/go-uuid
sha256: 5e9dc2bb3785d69a65d287a4b3fa7e9f583a127e41c6a2fd095ac862fed71dad
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/hashicorp/go-uuid/@v/v1.0.3.zip
- dest: vendor/github.com/hashicorp/golang-lru/v2
sha256: 2eb92ff13970bccd460efae14255bfc03bb51474da0137e477a60f95561acc30
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/hashicorp/golang-lru/v2/@v/v2.0.7.zip
- dest: vendor/github.com/inconshreveable/mousetrap
sha256: 526674de624d7db108cfe7653ef110ccdfd97bc85026254224815567928ed243
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/inconshreveable/mousetrap/@v/v1.1.0.zip
- dest: vendor/github.com/jcmturner/aescts/v2
sha256: 717a211ad4aac248cf33cadde73059c13f8e9462123a0ab2fed5c5e61f7739d7
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/jcmturner/aescts/v2/@v/v2.0.0.zip
- dest: vendor/github.com/jcmturner/dnsutils/v2
sha256: f9188186b672e547cfaef66107aa62d65054c5d4f10d4dcd1ff157d6bf8c275d
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/jcmturner/dnsutils/v2/@v/v2.0.0.zip
- dest: vendor/github.com/jcmturner/gofork
sha256: b7e42a499d6be8dd07069c031f9291a5615aa0d59660c7e322cff585ce39e8a2
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/jcmturner/gofork/@v/v1.7.6.zip
- dest: vendor/github.com/jcmturner/goidentity/v6
sha256: 243e6fd6ea9f3094eea32c55febade6d8aaa1b563db655b0c5327940e4719beb
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/jcmturner/goidentity/v6/@v/v6.0.1.zip
- dest: vendor/github.com/jcmturner/rpc/v2
sha256: 90c595355e5e2c9dc1e1ae71a88491a04c34d8791180098da103217cbf5f5574
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/jcmturner/rpc/v2/@v/v2.0.3.zip
- dest: vendor/github.com/jtolio/noiseconn
sha256: b7731fe9263cd320fd4ab4f537eaf904a01714c8afb0f718ef1c0d6d1ab376f7
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/jtolio/noiseconn/@v/v0.0.0-20231127013910-f6d9ecbf1de7.zip
- dest: vendor/github.com/klauspost/cpuid/v2
sha256: df0a2644ba6487213a91a9525ab4fb6d55edfa31df60ddf439d49282041bc740
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/klauspost/cpuid/v2/@v/v2.2.8.zip
- dest: vendor/github.com/kr/fs
sha256: d376bd98e81aea34585fc3b04bab76363e9e87cde69383964e57e9779f2af81e
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/kr/fs/@v/v0.1.0.zip
- dest: vendor/github.com/kylelemons/godebug
sha256: dbbd0ce8c2f4932bb03704d73026b21af12bd68d5b8f4798dbf10a487a2b6d13
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/kylelemons/godebug/@v/v1.1.0.zip
- dest: vendor/github.com/lpar/date
sha256: 0dc5273db18a880a5bfb6ae51097f78673a32c3e6223cca13fe929cb0abd8a77
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/lpar/date/@v/v1.0.0.zip
- dest: vendor/github.com/lucasb-eyer/go-colorful
sha256: 78d5d0e0737f0f54bbed77b6dfa847d8c871bed2668a9dc44328c7c3411ada10
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/lucasb-eyer/go-colorful/@v/v1.2.0.zip
- dest: vendor/github.com/lufia/plan9stats
sha256: b01a8b655c8940bd384446b6f524e6cb7d9e59befda8183b0a9db77bb39b8ed2
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/lufia/plan9stats/@v/v0.0.0-20231016141302-07b5767bb0ed.zip
- dest: vendor/github.com/mattn/go-isatty
sha256: f2d5f89ca451577e17464b9bb596dc0d0ecececb5eaa63622c41b57cd0b7b8cc
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/mattn/go-isatty/@v/v0.0.20.zip
- dest: vendor/github.com/minio/md5-simd
sha256: f829d35a6e6897db415af8888c4b074d1a253aee0e8fb7054b4d95477a81c3d6
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/minio/md5-simd/@v/v1.1.2.zip
- dest: vendor/github.com/minio/xxml
sha256: eec7f98185f849ac85b798a4a7b2b1cbd5aea8ea360f563b47e715ee7fbb5c6d
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/minio/xxml/@v/v0.0.3.zip
- dest: vendor/github.com/munnerz/goautoneg
sha256: 3d7ce17916779890be02ea6b3dd6345c3c30c1df502ad9d8b5b9b310e636afd9
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/munnerz/goautoneg/@v/v0.0.0-20191010083416-a7dc8b61c822.zip
- dest: vendor/github.com/onsi/ginkgo
sha256: e23fc33b0affa73a4f4c63410af931bf1f8d5b9db266b3461177036d725eacc5
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/onsi/ginkgo/@v/v1.16.5.zip
- dest: vendor/github.com/panjf2000/ants/v2
sha256: 71220c6230b0b591b973daa8162659e2349b50689eef97af8acf184c6cabc041
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/panjf2000/ants/v2/@v/v2.9.1.zip
- dest: vendor/github.com/pengsrc/go-shared
sha256: 27b2ba03dd2cdb2d83ecc4dd35dd9c9c620528d965c56cf3760ecafca5598af8
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/pengsrc/go-shared/@v/v0.2.1-0.20190131101655-1999055a4a14.zip
- dest: vendor/github.com/pkg/browser
sha256: 8524ae36d809564d1f218978593b5c565cf3ee8dccd035d66b336ad0c56e60d1
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/pkg/browser/@v/v0.0.0-20240102092130-5ac0b6a4141c.zip
- dest: vendor/github.com/pkg/errors
sha256: d4c36b8bcd0616290a3913215e0f53b931bd6e00670596f2960df1b44af2bd07
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/pkg/errors/@v/v0.9.1.zip
- dest: vendor/github.com/power-devops/perfstat
sha256: 4006b3bcc7ee4fa14a2075e64ae352f825afda0b3b62f227b5a5e1c0613af0fa
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/power-devops/perfstat/@v/v0.0.0-20221212215047-62379fc7944b.zip
- dest: vendor/github.com/prometheus/client_model
sha256: 8cd4703b4f1ab7eaa4b925c06a174bc84c93514d0969ac2a20ba51120cd4cab7
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/prometheus/client_model/@v/v0.6.1.zip
- dest: vendor/github.com/prometheus/common
sha256: f7986d2ffaedbd2b1b5a4506e4d8225796bd037f8d5d4aa185c4786fb6f3b3d9
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/prometheus/common/@v/v0.55.0.zip
- dest: vendor/github.com/prometheus/procfs
sha256: d31ad13f1ae121d842ff0f243d029c247e68710edab8a358d6366a67b7feaa6d
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/prometheus/procfs/@v/v0.15.1.zip
- dest: vendor/github.com/rasky/go-xdr
sha256: b5ebee6d3d7abb3c8c11933dcf7e40982a9c37b975f9f1763b26357217cfa019
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/rasky/go-xdr/@v/v0.0.0-20170124162913-1a41d1a06c93.zip
- dest: vendor/github.com/relvacode/iso8601
sha256: c97c0fa85c63e601aee29b8f905ad67446d709e5a594483a00212edd6b527506
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/relvacode/iso8601/@v/v1.3.0.zip
- dest: vendor/github.com/rs/xid
sha256: 331935097e01208709dd2c7425eee34d7f7ba75a6f2d65dce38319cb4a5707c2
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/rs/xid/@v/v1.5.0.zip
- dest: vendor/github.com/russross/blackfriday/v2
sha256: 7852750d58a053ce38b01f2c203208817564f552ebf371b2b630081d7004c6ae
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/russross/blackfriday/v2/@v/v2.1.0.zip
- dest: vendor/github.com/ryszard/goskiplist
sha256: 12c65729fc31d5a9bf246eb387bd4c268d0d68bf33b913cccd81bebd47d6f80d
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/ryszard/goskiplist/@v/v0.0.0-20150312221310-2dfbae5fcf46.zip
- dest: vendor/github.com/sabhiram/go-gitignore
sha256: 18379d4fa60ed3050b651e51ecb48a21aba3bf951c81d359aadbc1d7601ffef5
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/sabhiram/go-gitignore/@v/v0.0.0-20210923224102-525f6e181f06.zip
- dest: vendor/github.com/samber/lo
sha256: 49f5b5a10a3572b9e5cee36fd3d7be4c5c7ed69b1de5d5d5fb8c9bc36b89f4e7
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/samber/lo/@v/v1.47.0.zip
- dest: vendor/github.com/shabbyrobe/gocovmerge
sha256: cfe6f251d684dde3ec4956157a5a01480bebf4f868047d7059dc9ed36826e1f3
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/shabbyrobe/gocovmerge/@v/v0.0.0-20230507112040-c3350d9342df.zip
- dest: vendor/github.com/sony/gobreaker
sha256: 9b4fe3991963f409116289a0d9830896096da7dd8a090bf404348904737ba833
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/sony/gobreaker/@v/v0.5.0.zip
- dest: vendor/github.com/spacemonkeygo/monkit/v3
sha256: 1bd9007e39e54b985e9ef8aaf1c56d8680546619f7a126f917d836103e602d73
strip-components: 4
type: archive
url: https://proxy.golang.org/github.com/spacemonkeygo/monkit/v3/@v/v3.0.22.zip
- dest: vendor/github.com/tklauser/go-sysconf
sha256: f54f82b78dedd28c124df4aef834fb430ebc01ded8eb05cf172e7329839fa68d
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/tklauser/go-sysconf/@v/v0.3.13.zip
- dest: vendor/github.com/tklauser/numcpus
sha256: d3a313688a12f87ce3fd25623e873646fa3ae6c1c2cba5fd6fcc9c0fb5c9c47a
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/tklauser/numcpus/@v/v0.7.0.zip
- dest: vendor/github.com/willscott/go-nfs-client
sha256: fc0d9cba04b1e23cb483f4bf1627b88fee5b294dcc9e314e74a7c942cc24d9a3
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/willscott/go-nfs-client/@v/v0.0.0-20240104095149-b44639837b00.zip
- dest: vendor/github.com/yusufpapurcu/wmi
sha256: c2a0a12203162ef8fd6f65e191aac359823d370e113122cbd8e80711ddc9c1f9
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/yusufpapurcu/wmi/@v/v1.2.4.zip
- dest: vendor/github.com/zeebo/errs
sha256: eb442a20007e679a7602ca4316083aad883374bdd49be304f25b76b5136c2cd7
strip-components: 3
type: archive
url: https://proxy.golang.org/github.com/zeebo/errs/@v/v1.3.0.zip
- dest: vendor/go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp
sha256: 95afce9c9a2e3ea112aad57a9593c019eb3bd51adb26a46532ff3c3ac7c6c25a
strip-components: 6
type: archive
url: https://proxy.golang.org/go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp/@v/v0.54.0.zip
- dest: vendor/go.opentelemetry.io/otel
sha256: 2be935357223c93044dd687b3934effc81dced25b12a7c30a36121ef211357f0
strip-components: 2
type: archive
url: https://proxy.golang.org/go.opentelemetry.io/otel/@v/v1.29.0.zip
- dest: vendor/go.opentelemetry.io/otel/metric