-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathgo.mod
More file actions
2718 lines (2655 loc) · 138 KB
/
go.mod
File metadata and controls
2718 lines (2655 loc) · 138 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
module github.com/yandex/perforator
go 1.25
require (
4d63.com/gochecknoglobals v0.2.2-0.20230617165002-a9cb75083ef8
carvel.dev/ytt v0.52.2
cloud.google.com/go v0.123.0
cloud.google.com/go/accessapproval v1.8.8
cloud.google.com/go/accesscontextmanager v1.9.7
cloud.google.com/go/aiplatform v1.114.0
cloud.google.com/go/analytics v0.30.1
cloud.google.com/go/apigateway v1.7.7
cloud.google.com/go/apigeeconnect v1.7.7
cloud.google.com/go/apigeeregistry v0.10.0
cloud.google.com/go/apikeys v0.6.0
cloud.google.com/go/appengine v1.9.7
cloud.google.com/go/area120 v0.9.7
cloud.google.com/go/artifactregistry v1.19.0
cloud.google.com/go/asset v1.22.0
cloud.google.com/go/assuredworkloads v1.13.0
cloud.google.com/go/auth v0.18.1
cloud.google.com/go/auth/oauth2adapt v0.2.8
cloud.google.com/go/automl v1.15.0
cloud.google.com/go/baremetalsolution v1.4.0
cloud.google.com/go/batch v1.14.0
cloud.google.com/go/beyondcorp v1.2.0
cloud.google.com/go/bigquery v1.72.0
cloud.google.com/go/bigtable v1.41.0
cloud.google.com/go/billing v1.21.0
cloud.google.com/go/binaryauthorization v1.10.0
cloud.google.com/go/certificatemanager v1.9.6
cloud.google.com/go/channel v1.21.0
cloud.google.com/go/cloudbuild v1.25.0
cloud.google.com/go/clouddms v1.8.8
cloud.google.com/go/cloudtasks v1.13.7
cloud.google.com/go/compute v1.54.0
cloud.google.com/go/compute/metadata v0.9.0
cloud.google.com/go/contactcenterinsights v1.17.4
cloud.google.com/go/container v1.45.0
cloud.google.com/go/containeranalysis v0.14.2
cloud.google.com/go/datacatalog v1.26.1
cloud.google.com/go/dataflow v0.11.1
cloud.google.com/go/dataform v0.12.1
cloud.google.com/go/datafusion v1.8.7
cloud.google.com/go/datalabeling v0.9.7
cloud.google.com/go/dataplex v1.28.0
cloud.google.com/go/dataproc v1.12.0
cloud.google.com/go/dataproc/v2 v2.15.0
cloud.google.com/go/dataqna v0.9.8
cloud.google.com/go/datastore v1.21.0
cloud.google.com/go/datastream v1.15.1
cloud.google.com/go/deploy v1.27.3
cloud.google.com/go/dialogflow v1.74.0
cloud.google.com/go/dlp v1.28.0
cloud.google.com/go/documentai v1.39.0
cloud.google.com/go/domains v0.10.7
cloud.google.com/go/edgecontainer v1.4.4
cloud.google.com/go/errorreporting v0.4.0
cloud.google.com/go/essentialcontacts v1.7.7
cloud.google.com/go/eventarc v1.18.0
cloud.google.com/go/filestore v1.10.3
cloud.google.com/go/firestore v1.21.0
cloud.google.com/go/functions v1.19.7
cloud.google.com/go/gaming v1.10.1
cloud.google.com/go/gkebackup v1.8.1
cloud.google.com/go/gkeconnect v0.12.5
cloud.google.com/go/gkehub v0.16.0
cloud.google.com/go/gkemulticloud v1.6.0
cloud.google.com/go/grafeas v0.3.16
cloud.google.com/go/gsuiteaddons v1.7.8
cloud.google.com/go/iam v1.5.3
cloud.google.com/go/iap v1.11.3
cloud.google.com/go/ids v1.5.7
cloud.google.com/go/iot v1.8.7
cloud.google.com/go/kms v1.25.0
cloud.google.com/go/language v1.14.6
cloud.google.com/go/lifesciences v0.10.7
cloud.google.com/go/logging v1.13.1
cloud.google.com/go/longrunning v0.8.0
cloud.google.com/go/managedidentities v1.7.7
cloud.google.com/go/maps v1.26.0
cloud.google.com/go/mediatranslation v0.9.7
cloud.google.com/go/memcache v1.11.7
cloud.google.com/go/metastore v1.14.8
cloud.google.com/go/monitoring v1.24.3
cloud.google.com/go/networkconnectivity v1.20.0
cloud.google.com/go/networkmanagement v1.21.0
cloud.google.com/go/networksecurity v0.11.0
cloud.google.com/go/notebooks v1.12.7
cloud.google.com/go/optimization v1.7.7
cloud.google.com/go/orchestration v1.11.10
cloud.google.com/go/orgpolicy v1.15.1
cloud.google.com/go/osconfig v1.15.1
cloud.google.com/go/oslogin v1.14.7
cloud.google.com/go/phishingprotection v0.9.7
cloud.google.com/go/policytroubleshooter v1.11.7
cloud.google.com/go/privatecatalog v0.10.8
cloud.google.com/go/pubsub v1.50.1
cloud.google.com/go/pubsub/v2 v2.0.0
cloud.google.com/go/pubsublite v1.8.2
cloud.google.com/go/recaptchaenterprise v1.3.1
cloud.google.com/go/recaptchaenterprise/v2 v2.21.0
cloud.google.com/go/recommendationengine v0.9.7
cloud.google.com/go/recommender v1.13.6
cloud.google.com/go/redis v1.18.3
cloud.google.com/go/resourcemanager v1.10.7
cloud.google.com/go/resourcesettings v1.8.3
cloud.google.com/go/retail v1.25.1
cloud.google.com/go/run v1.15.0
cloud.google.com/go/scheduler v1.11.8
cloud.google.com/go/secretmanager v1.16.0
cloud.google.com/go/security v1.19.2
cloud.google.com/go/securitycenter v1.38.1
cloud.google.com/go/servicecontrol v1.11.1
cloud.google.com/go/servicedirectory v1.12.7
cloud.google.com/go/servicemanagement v1.8.0
cloud.google.com/go/serviceusage v1.6.0
cloud.google.com/go/shell v1.8.7
cloud.google.com/go/spanner v1.87.0
cloud.google.com/go/speech v1.29.0
cloud.google.com/go/storage v1.60.0
cloud.google.com/go/storagetransfer v1.13.1
cloud.google.com/go/talent v1.8.4
cloud.google.com/go/texttospeech v1.16.0
cloud.google.com/go/tpu v1.8.4
cloud.google.com/go/trace v1.11.7
cloud.google.com/go/translate v1.12.7
cloud.google.com/go/video v1.27.1
cloud.google.com/go/videointelligence v1.12.7
cloud.google.com/go/vision v1.2.0
cloud.google.com/go/vision/v2 v2.9.6
cloud.google.com/go/vmmigration v1.10.0
cloud.google.com/go/vmwareengine v1.3.6
cloud.google.com/go/vpcaccess v1.8.7
cloud.google.com/go/webrisk v1.11.2
cloud.google.com/go/websecurityscanner v1.7.7
cloud.google.com/go/workflows v1.14.3
connectrpc.com/connect v1.16.2
cuelang.org/go v0.4.3
firebase.google.com/go v3.13.0+incompatible
git.apache.org/thrift.git v0.13.0
github.com/99designs/gqlgen v0.17.86
github.com/AlecAivazis/survey/v2 v2.3.7
github.com/AlexxIT/go2rtc v1.8.2
github.com/Antonboom/errname v0.1.10
github.com/Antonboom/nilnil v0.1.9
github.com/Antonboom/testifylint v1.4.3
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.20.0
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.13.1
github.com/Azure/azure-sdk-for-go/sdk/azidentity/cache v0.3.2
github.com/Azure/azure-sdk-for-go/sdk/internal v1.11.2
github.com/Azure/azure-sdk-for-go/sdk/keyvault/azkeys v0.10.0
github.com/Azure/azure-sdk-for-go/sdk/keyvault/internal v0.7.1
github.com/Azure/azure-sdk-for-go/sdk/messaging/azeventhubs/v2 v2.0.1
github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.9.1
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute/v5 v5.7.0
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/eventhub/armeventhub v1.3.0
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/internal v1.1.2
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/internal/v2 v2.0.0
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/internal/v3 v3.1.0
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/managementgroups/armmanagementgroups v1.2.0
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork/v4 v4.3.0
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armdeployments v1.0.0
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources v1.2.0
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources/v3 v3.0.0
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/armstorage v1.8.1
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.6.4
github.com/Azure/go-autorest/autorest v0.11.29
github.com/Azure/go-autorest/autorest/adal v0.9.22
github.com/Azure/go-autorest/autorest/azure/auth v0.5.12
github.com/Azure/go-autorest/autorest/azure/cli v0.4.6
github.com/Azure/go-autorest/autorest/date v0.3.0
github.com/Azure/go-autorest/autorest/mocks v0.4.2
github.com/Azure/go-autorest/autorest/to v0.4.1
github.com/Azure/go-autorest/autorest/validation v0.3.1
github.com/BurntSushi/toml v1.5.0
github.com/ClickHouse/ch-go v0.65.1
github.com/ClickHouse/clickhouse-go v1.5.4
github.com/ClickHouse/clickhouse-go/v2 v2.33.1
github.com/CycloneDX/cyclonedx-go v0.9.2
github.com/DATA-DOG/go-sqlmock v1.5.2
github.com/DATA-DOG/godog v0.7.13
github.com/DataDog/datadog-api-client-go/v2 v2.17.0
github.com/DataDog/zstd v1.5.2
github.com/GehirnInc/crypt v0.0.0-20230320061759-8cc1b52080c5
github.com/HdrHistogram/hdrhistogram-go v1.1.2
github.com/Jeffail/gabs/v2 v2.7.0
github.com/JohannesKaufmann/html-to-markdown v1.6.0
github.com/KimMachineGun/automemlimit v0.7.1
github.com/Masterminds/semver v1.5.0
github.com/Masterminds/semver/v3 v3.3.1
github.com/Masterminds/squirrel v1.5.4
github.com/MicahParks/keyfunc/v2 v2.1.0
github.com/Microsoft/go-winio v0.6.2
github.com/NVIDIA/go-dcgm v0.0.0-20250401195952-7c92211ba301
github.com/NVIDIA/go-nvlib v0.7.0
github.com/NVIDIA/go-nvml v0.12.4-0
github.com/NVIDIA/mig-parted v0.8.0
github.com/Nerzal/gocloak/v13 v13.9.0
github.com/Netflix/go-expect v0.0.0-20220104043353-73e0943537d2
github.com/NoL1m1ts/go-oapi-merge v1.1.2
github.com/OneOfOne/xxhash v1.2.8
github.com/PaesslerAG/jsonpath v0.1.1
github.com/PaulSonOfLars/gotgbot/v2 v2.0.0-rc.31
github.com/ProtonMail/gopenpgp/v3 v3.1.2
github.com/PuerkitoBio/goquery v1.11.0
github.com/RoaringBitmap/roaring/v2 v2.14.4
github.com/Shopify/sarama v1.38.1
github.com/ThalesIgnite/crypto11 v1.2.5
github.com/TuyaInc/tuya_pulsar_sdk_go v0.0.0-20201113075236-46c1e459e32e
github.com/Vonng/pg_exporter v0.8.1
github.com/XSAM/otelsql v0.39.0
github.com/a-h/templ v0.2.663
github.com/a2aproject/a2a-go v0.3.3
github.com/abema/go-mp4 v1.4.1
github.com/agnivade/levenshtein v1.2.1
github.com/airbusgeo/godal v0.0.16
github.com/airbusgeo/osio v0.1.4
github.com/alecthomas/participle v0.4.1
github.com/alecthomas/participle/v2 v2.1.4
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751
github.com/aleroyer/rsyslog_exporter v1.1.0
github.com/alexflint/go-filemutex v1.3.0
github.com/alicebob/miniredis/v2 v2.37.0
github.com/alitto/pond v1.9.2
github.com/anatol/luks.go v0.0.0-20211210165108-5d9a15b4f614
github.com/andybalholm/brotli v1.2.0
github.com/andybalholm/cascadia v1.3.3
github.com/annetutil/gnetcli v1.2.15
github.com/antchfx/htmlquery v1.3.2
github.com/antchfx/xpath v1.3.1
github.com/antham/ghokin/v3 v3.7.0
github.com/antihax/optional v1.0.0
github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230512164433-5d1fd1a340c9
github.com/antlr4-go/antlr/v4 v4.13.1
github.com/anttsov/curator v0.0.0-20220418135948-cfbcac4c267c
github.com/apache/arrow-go/v18 v18.4.1
github.com/apache/arrow/go/v13 v13.0.0-20230512153032-cd6e2a4d2b93
github.com/apache/iceberg-go v0.4.0
github.com/apache/thrift v0.22.0
github.com/apparentlymart/go-cidr v1.1.0
github.com/araddon/dateparse v0.0.0-20190510211750-d2ba70357e92
github.com/armon/go-metrics v0.4.1
github.com/armon/go-radix v1.0.0
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2
github.com/asticode/go-astits v1.15.0
github.com/at-wat/ebml-go v0.17.0
github.com/atotto/clipboard v0.1.4
github.com/awalterschulze/gographviz v2.0.3+incompatible
github.com/aws/aws-sdk-go v1.55.7
github.com/aws/aws-sdk-go-v2 v1.41.1
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.4
github.com/aws/aws-sdk-go-v2/config v1.32.7
github.com/aws/aws-sdk-go-v2/credentials v1.19.7
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.17
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.21.1
github.com/aws/aws-sdk-go-v2/service/ec2 v1.285.0
github.com/aws/aws-sdk-go-v2/service/ecr v1.55.1
github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2 v1.54.6
github.com/aws/aws-sdk-go-v2/service/kms v1.49.5
github.com/aws/aws-sdk-go-v2/service/organizations v1.50.1
github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi v1.31.6
github.com/aws/aws-sdk-go-v2/service/s3 v1.96.0
github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.41.1
github.com/aws/aws-sdk-go-v2/service/sqs v1.42.21
github.com/aws/aws-sdk-go-v2/service/ssm v1.64.4
github.com/aws/aws-sdk-go-v2/service/ssoadmin v1.36.14
github.com/aws/smithy-go v1.24.0
github.com/aymerick/douceur v0.2.0
github.com/aymerick/raymond v2.0.3-0.20180322193309-b565731e1464+incompatible
github.com/beevik/etree v1.1.0
github.com/bep/debounce v1.2.1
github.com/bgp/stayrtr v0.6.1
github.com/bits-and-blooms/bitset v1.24.2
github.com/bits-and-blooms/bloom/v3 v3.5.0
github.com/bkielbasa/cyclop v1.2.1
github.com/blang/semver/v4 v4.0.0
github.com/bluenviron/gortsplib/v4 v4.10.6
github.com/bluenviron/mediacommon v1.12.4
github.com/bmatcuk/doublestar/v4 v4.9.1
github.com/bombsimon/wsl/v4 v4.0.1-0.20230528151643-09f4c06378eb
github.com/boombuler/barcode v1.0.1
github.com/bradfitz/gomemcache v0.0.0-20230611145640-acc696258285
github.com/brianvoe/gofakeit/v6 v6.28.0
github.com/bufbuild/buf v1.30.0
github.com/buger/goterm v1.0.4
github.com/buger/jsonparser v1.1.1
github.com/c2h5oh/datasize v0.0.0-20220606134207-859f65c6625b
github.com/caarlos0/env/v11 v11.2.2
github.com/casbin/casbin/v2 v2.47.3
github.com/cenkalti/backoff/v4 v4.3.0
github.com/cep21/circuit/v4 v4.0.0
github.com/cert-manager/cert-manager v1.11.5
github.com/cespare/xxhash v1.1.0
github.com/cespare/xxhash/v2 v2.3.0
github.com/charmbracelet/bubbles v0.18.0
github.com/charmbracelet/bubbletea v0.26.4
github.com/charmbracelet/glamour v0.8.0
github.com/charmbracelet/lipgloss v0.12.1
github.com/chzyer/readline v1.5.1
github.com/cilium/ebpf v0.17.3
github.com/cloudevents/sdk-go/binding/format/protobuf/v2 v2.15.0
github.com/cloudevents/sdk-go/v2 v2.15.0
github.com/cloudflare/backoff v0.0.0-20161212185259-647f3cdfc87a
github.com/cloudflare/cloudflare-go v0.80.0
github.com/coder/websocket v1.8.13
github.com/confluentinc/confluent-kafka-go/v2 v2.2.0
github.com/container-storage-interface/spec v1.10.0
github.com/containerd/cgroups/v3 v3.0.5
github.com/containerd/containerd v1.7.29
github.com/containerd/continuity v0.4.5
github.com/containerd/go-cni v1.1.12
github.com/containernetworking/cni v1.2.3
github.com/containernetworking/plugins v1.5.1
github.com/corazawaf/coraza/v3 v3.2.1
github.com/coredhcp/coredhcp v0.0.0-20220602152301-a2552c5c1b7a
github.com/coredns/caddy v1.1.1
github.com/coredns/coredns v1.11.3
github.com/coreos/go-iptables v0.7.0
github.com/coreos/go-oidc/v3 v3.11.0
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf
github.com/coreos/go-systemd/v22 v22.5.0
github.com/creack/pty v1.1.24
github.com/crossplane/crossplane-runtime v1.19.0
github.com/cucumber/gherkin-go/v19 v19.0.3
github.com/cucumber/godog v0.12.5
github.com/cucumber/messages-go/v16 v16.0.1
github.com/czerwonk/bird_exporter v0.0.0-20231026083236-f24f1ab36c60
github.com/czerwonk/bird_socket v0.0.0-20230831050638-df62ae583e1d
github.com/czerwonk/testutils v0.0.0-20170526233935-dd9dabe360d4
github.com/daku10/go-lz-string v0.0.6
github.com/dave/dst v0.27.2
github.com/dave/jennifer v1.7.0
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
github.com/dchest/siphash v1.2.3
github.com/deepmap/oapi-codegen v1.9.0
github.com/denisenkom/go-mssqldb v0.12.2
github.com/devsisters/go-applereceipt v0.0.0-20230806051143-d8eef1e6126b
github.com/dgraph-io/ristretto v0.1.1
github.com/dgraph-io/ristretto/v2 v2.2.0
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/dgrijalva/jwt-go/v4 v4.0.0-preview1
github.com/dgryski/go-farm v0.0.0-20240924180020-3414d57e47da
github.com/diegoholiveira/jsonlogic/v3 v3.9.0
github.com/digitalocean/go-libvirt v0.0.0-20190715144809-7b622097a793
github.com/disintegration/imaging v1.6.2
github.com/distribution/distribution/v3 v3.0.0-20221208165359-362910506bc2
github.com/dlclark/regexp2 v1.11.5
github.com/dnaeon/go-vcr v1.2.0
github.com/dnstap/golang-dnstap v0.4.0
github.com/docker/distribution v2.8.3+incompatible
github.com/docker/docker v28.5.1+incompatible
github.com/docker/go-connections v0.6.0
github.com/docker/go-metrics v0.0.1
github.com/dolthub/swiss v0.1.0
github.com/dongri/phonenumber v0.1.12
github.com/doug-martin/goqu/v9 v9.19.0
github.com/dustin/go-humanize v1.0.1
github.com/eapache/channels v1.1.0
github.com/ebml-go/webm v0.0.0-20221117133942-84fa5245cf70
github.com/eclipse/paho.golang v0.22.0
github.com/eclipse/paho.mqtt.golang v1.5.1
github.com/elastic/go-elasticsearch/v7 v7.17.1
github.com/elimity-com/scim v0.0.0-20220121082953-15165b1a61c8
github.com/emersion/go-imap v1.2.1
github.com/emiago/sipgo v1.0.0
github.com/emicklei/go-restful/v3 v3.11.0
github.com/emirpasic/gods/v2 v2.0.0-alpha
github.com/envoyproxy/go-control-plane v0.13.5-0.20251024222203-75eaa193e329
github.com/envoyproxy/go-control-plane/envoy v1.35.0
github.com/envoyproxy/go-control-plane/ratelimit v0.1.0
github.com/evanphx/json-patch v5.9.0+incompatible
github.com/evanphx/json-patch/v5 v5.9.11
github.com/evanw/esbuild v0.27.0
github.com/exaring/otelpgx v0.9.4
github.com/expr-lang/expr v1.17.7
github.com/facebookgo/stack v0.0.0-20160209184415-751773369052
github.com/failsafe-go/failsafe-go v0.6.9
github.com/fatih/color v1.18.0
github.com/fclairamb/ftpserver v0.14.0
github.com/fclairamb/go-log v0.5.0
github.com/fergusstrange/embedded-postgres v1.23.0
github.com/fernet/fernet-go v0.0.0-20240119011108-303da6aec611
github.com/florianl/go-nfqueue v1.3.1
github.com/florianl/go-tc v0.4.2
github.com/flosch/pongo2/v4 v4.0.2
github.com/fluent/fluent-bit-go v0.0.0-20230515084116-b93d969da46d
github.com/fogleman/gg v1.3.0
github.com/forPelevin/gomoji v1.3.0
github.com/fsnotify/fsnotify v1.9.0
github.com/fsouza/go-dockerclient v1.10.1
github.com/fullstorydev/grpcurl v1.9.3
github.com/fxamacker/cbor/v2 v2.9.0
github.com/gabriel-vasile/mimetype v1.4.8
github.com/gdamore/tcell/v2 v2.7.4
github.com/georgysavva/scany/v2 v2.0.0
github.com/getkin/kin-openapi v0.132.0
github.com/getsentry/raven-go v0.2.0
github.com/getsentry/sentry-go v0.13.0
github.com/ghodss/yaml v1.0.0
github.com/ghostiam/protogetter v0.3.5
github.com/gin-contrib/gzip v0.0.5
github.com/gin-gonic/gin v1.10.1
github.com/glebarez/go-sqlite v1.22.0
github.com/glebarez/sqlite v1.8.0
github.com/gliderlabs/ssh v0.3.8
github.com/go-ble/ble v0.0.0-20220207185428-60d1eecf2633
github.com/go-chi/chi/v5 v5.2.2
github.com/go-chi/hostrouter v0.3.0
github.com/go-chi/render v1.0.3
github.com/go-cmd/cmd v1.4.2
github.com/go-co-op/gocron/v2 v2.16.2
github.com/go-critic/go-critic v0.9.0
github.com/go-delve/delve v1.25.2
github.com/go-faster/city v1.0.1
github.com/go-faster/errors v0.7.1
github.com/go-faster/jx v1.1.0
github.com/go-git/go-billy/v5 v5.6.2
github.com/go-git/go-git/v5 v5.14.0
github.com/go-ldap/ldap/v3 v3.4.5
github.com/go-logr/logr v1.4.3
github.com/go-logr/zapr v1.3.0
github.com/go-mysql-org/go-mysql v1.8.0
github.com/go-ole/go-ole v1.2.7-0.20211215081658-ee6c8cce8e87
github.com/go-openapi/analysis v0.23.0
github.com/go-openapi/errors v0.22.0
github.com/go-openapi/inflect v0.21.2
github.com/go-openapi/jsonpointer v0.21.0
github.com/go-openapi/jsonreference v0.21.0
github.com/go-openapi/loads v0.22.0
github.com/go-openapi/runtime v0.28.0
github.com/go-openapi/spec v0.21.0
github.com/go-openapi/strfmt v0.23.0
github.com/go-openapi/swag v0.23.0
github.com/go-openapi/validate v0.24.0
github.com/go-pdf/fpdf v0.9.0
github.com/go-playground/form/v4 v4.2.0
github.com/go-playground/validator/v10 v10.22.0
github.com/go-redis/redis v6.15.9+incompatible
github.com/go-redis/redis/extra/rediscmd/v8 v8.11.5
github.com/go-redis/redis/v7 v7.4.1
github.com/go-redis/redis/v8 v8.11.5
github.com/go-redis/redis_rate/v10 v10.0.1
github.com/go-redsync/redsync/v4 v4.8.1
github.com/go-resty/resty/v2 v2.16.3
github.com/go-rod/rod v0.116.2
github.com/go-shiori/go-readability v0.0.0-20230421032831-c66949dfc0ad
github.com/go-sql-driver/mysql v1.9.3
github.com/go-stomp/stomp v2.1.4+incompatible
github.com/go-swagger/go-swagger v0.30.5
github.com/go-test/deep v1.1.0
github.com/go-testfixtures/testfixtures/v3 v3.6.1
github.com/go-zookeeper/zk v1.0.4
github.com/gobwas/ws v1.4.0
github.com/goccy/go-graphviz v0.2.9
github.com/goccy/go-json v0.10.5
github.com/goccy/go-yaml v1.19.2
github.com/gocql/gocql v1.7.0
github.com/godbus/dbus/v5 v5.1.1-0.20221223143132-c1a76c14e486
github.com/godror/godror v0.44.1
github.com/gofrs/flock v0.12.1
github.com/gofrs/uuid v4.4.0+incompatible
github.com/gofrs/uuid/v5 v5.3.1
github.com/gogo/protobuf v1.3.2
github.com/golang-jwt/jwt/v4 v4.5.2
github.com/golang-jwt/jwt/v5 v5.3.1
github.com/golang-migrate/migrate/v4 v4.15.2
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0
github.com/golang/geo v0.0.0-20230421003525-6adc56603217
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8
github.com/golang/mock v1.7.0-rc.1
github.com/golang/protobuf v1.5.4
github.com/golang/snappy v1.0.0
github.com/google/brotli v1.0.8-0.20190503095111-78e7bbc3c34b
github.com/google/btree v1.1.3
github.com/google/cel-go v0.25.0
github.com/google/flatbuffers v25.9.23+incompatible
github.com/google/gnostic v0.7.0
github.com/google/go-attestation v0.5.1
github.com/google/go-cmp v0.7.0
github.com/google/go-containerregistry v0.20.1
github.com/google/go-github/v35 v35.3.0
github.com/google/go-jsonnet v0.21.0
github.com/google/go-tpm v0.9.0
github.com/google/gopacket v1.1.19
github.com/google/licensecheck v0.3.1
github.com/google/nftables v0.3.0
github.com/google/osv-scalibr v0.2.0
github.com/google/osv-scanner v1.8.1
github.com/google/pprof v0.0.0-20250317173921-a4b03ec1a45e
github.com/google/renameio/v2 v2.0.0
github.com/google/safehtml v0.1.0
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
github.com/google/tink/go v1.7.0
github.com/google/uuid v1.6.0
github.com/googleapis/api-linter v1.71.0
github.com/googleapis/gax-go/v2 v2.17.0
github.com/gordonklaus/ineffassign v0.0.0-20230107090616-13ace0543b28
github.com/gorilla/csrf v1.7.3
github.com/gorilla/css v1.0.1
github.com/gorilla/mux v1.8.1
github.com/gorilla/schema v1.4.1
github.com/gorilla/sessions v1.2.1
github.com/gorilla/websocket v1.5.3
github.com/gosimple/slug v1.13.1
github.com/gosimple/unidecode v1.0.1
github.com/gosnmp/gosnmp v1.38.0
github.com/gostaticanalysis/forcetypeassert v0.1.0
github.com/gotd/td v0.127.0
github.com/graphql-go/graphql v0.8.1
github.com/graphql-go/handler v0.2.3
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.1
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
github.com/grpc-ecosystem/grpc-gateway v1.16.0
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.1
github.com/grpc-ecosystem/grpc-health-probe v0.4.14
github.com/gruntwork-io/terratest v0.36.8
github.com/haivision/srtgo v0.0.0-20211019211331-3f0cef2e19ee
github.com/hamba/avro/v2 v2.30.0
github.com/hanwen/go-fuse/v2 v2.9.0
github.com/haproxytech/client-native/v5 v5.0.0
github.com/haproxytech/config-parser/v5 v5.0.0
github.com/haproxytech/go-logger v1.1.0
github.com/hashicorp/consul/api v1.31.2
github.com/hashicorp/go-hclog v1.6.3
github.com/hashicorp/go-multierror v1.1.1
github.com/hashicorp/go-plugin v1.6.3
github.com/hashicorp/go-retryablehttp v0.7.7
github.com/hashicorp/go-version v1.8.0
github.com/hashicorp/golang-lru v1.0.2
github.com/hashicorp/golang-lru/v2 v2.0.7
github.com/hashicorp/hcl/v2 v2.23.0
github.com/hashicorp/memberlist v0.5.1
github.com/hashicorp/terraform-exec v0.23.1
github.com/hashicorp/terraform-json v0.26.0
github.com/hashicorp/terraform-plugin-docs v0.15.0
github.com/hashicorp/terraform-plugin-framework v1.14.1
github.com/hashicorp/terraform-plugin-framework-validators v0.18.0
github.com/hashicorp/terraform-plugin-go v0.26.0
github.com/hashicorp/terraform-plugin-log v0.9.0
github.com/hashicorp/terraform-plugin-sdk/v2 v2.36.1
github.com/hashicorp/terraform-plugin-testing v1.12.0
github.com/hashicorp/vault/api v1.12.0
github.com/hashicorp/yamux v0.1.2-0.20220728231903-574fd304fd65
github.com/hasura/go-graphql-client v0.15.0
github.com/heetch/confita v0.0.0-20181011080120-653cbec9ecff
github.com/hinshun/vt10x v0.0.0-20220301184237-5011da428d02
github.com/iancoleman/orderedmap v0.0.0-20190318233801-ac98e3ecb4b0
github.com/iancoleman/strcase v0.3.0
github.com/icza/bitio v1.1.0
github.com/imdario/mergo v0.3.16
github.com/insomniacslk/dhcp v0.0.0-20230516061539-49801966e6cb
github.com/intel/govmm v0.0.0-20200602145448-7cc469641b7b
github.com/invopop/jsonschema v0.7.0
github.com/iovisor/gobpf v0.0.0-20200311173154-8078b203833d
github.com/itchyny/gojq v0.12.18
github.com/jackc/pgconn v1.14.3
github.com/jackc/pgerrcode v0.0.0-20240316143900-6e2875d9b438
github.com/jackc/pgio v1.0.0
github.com/jackc/pglogrepl v0.0.0-20210731151948-9f1effd582c4
github.com/jackc/pgproto3/v2 v2.3.3
github.com/jackc/pgtype v1.14.0
github.com/jackc/pgx v3.6.2+incompatible
github.com/jackc/pgx/v4 v4.18.3
github.com/jackc/pgx/v5 v5.7.6
github.com/jaegertracing/jaeger v1.48.0
github.com/jarcoal/httpmock v1.3.1
github.com/jasonlvhit/gocron v0.0.0-20190121134850-6771d4b492ba
github.com/jcmturner/gokrb5/v8 v8.4.4
github.com/jensneuse/abstractlogger v0.0.4
github.com/jessevdk/go-flags v1.6.1
github.com/jhump/protoreflect v1.17.0
github.com/jingyugao/rowserrcheck v1.1.1
github.com/jinzhu/inflection v1.0.0
github.com/jlaffaye/ftp v0.2.0
github.com/jmattheis/goverter v1.7.0
github.com/jmespath/go-jmespath v0.4.0
github.com/jmespath/go-jmespath/internal/testify v1.5.1
github.com/jmoiron/sqlx v1.4.0
github.com/joho/godotenv v1.5.1
github.com/jonboulle/clockwork v0.5.0
github.com/json-iterator/go v1.1.12
github.com/jszwec/csvutil v1.6.0
github.com/k-sone/critbitgo v1.4.0
github.com/kardianos/service v1.2.2
github.com/karlseguin/ccache/v2 v2.0.8
github.com/karlseguin/ccache/v3 v3.0.7
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
github.com/kelseyhightower/envconfig v1.4.0
github.com/kentik/patricia v1.2.1
github.com/keybase/dbus v0.0.0-20220506165403-5aa21ea2c23a
github.com/keybase/go-crypto v0.0.0-20200123153347-de78d2cb44f4
github.com/keybase/go-keychain v0.0.1
github.com/kisielk/og-rek v1.3.0
github.com/klauspost/compress v1.18.2
github.com/klauspost/cpuid/v2 v2.3.0
github.com/klauspost/reedsolomon v1.10.1-0.20220820100202-797d62e03058
github.com/kolesa-team/go-webp v1.0.5
github.com/kolide/osquery-go v0.0.0-20190113061206-be0a8de4cf1d
github.com/kr/pretty v0.3.1
github.com/kr/text v0.2.0
github.com/kyoh86/exportloopref v0.1.11
github.com/labstack/echo/v4 v4.13.4
github.com/leodido/go-urn v1.4.0
github.com/lestrrat-go/jwx/v2 v2.0.11
github.com/lni/dragonboat/v4 v4.0.0-20240618143154-6a1623140f27
github.com/lni/vfs v0.2.1-0.20220616104132-8852fd867376
github.com/lorenzosaino/go-sysctl v0.3.1
github.com/lufeee/execinquery v1.2.1
github.com/lukasjarosch/go-docx v0.5.0
github.com/magiconair/properties v1.8.10
github.com/magnetde/starlark-re v0.1.2
github.com/mailru/easyjson v0.9.0
github.com/makiuchi-d/gozxing v0.1.1
github.com/mandykoh/prism v0.35.3
github.com/manifoldco/promptui v0.9.0
github.com/mark3labs/mcp-go v0.34.0
github.com/mastercard/oauth1-signer-go v1.1.0
github.com/masterzen/winrm v0.0.0-20210623064412-3b76017826b0
github.com/mattn/go-isatty v0.0.20
github.com/mattn/go-sqlite3 v2.0.1+incompatible
github.com/maxence-charriere/go-app/v9 v9.8.0
github.com/mdlayher/netlink v1.7.3-0.20250113171957-fbb4dce95f42
github.com/mennanov/fieldmask-utils v0.7.0
github.com/mfridman/interpolate v0.0.2
github.com/mfridman/xflag v0.1.0
github.com/micromdm/plist v0.2.1
github.com/miekg/dns v1.1.66
github.com/miekg/pkcs11 v1.1.1
github.com/mikespook/gorbac v2.3.0+incompatible
github.com/milvus-io/milvus-sdk-go/v2 v2.4.2
github.com/minio/md5-simd v1.1.3-0.20220930112006-92dcf22dd9de
github.com/minio/minio-go/v7 v7.0.76
github.com/minio/sha256-simd v1.0.0
github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible
github.com/mistifyio/go-zfs/v3 v3.0.1
github.com/mitchellh/copystructure v1.2.0
github.com/mitchellh/go-homedir v1.1.0
github.com/mitchellh/mapstructure v1.5.1-0.20220423185008-bf980b35cac4
github.com/mitchellh/panicwrap v1.0.0
github.com/mkrautz/goar v0.0.0-20150919110319-282caa8bd9da
github.com/modelcontextprotocol/go-sdk v1.2.0
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee
github.com/montanaflynn/stats v0.7.1
github.com/mrknow-all/go-oae v0.0.0-20221221002406-36600e4f6b43
github.com/nathan-osman/go-sunrise v1.1.0
github.com/nats-io/nats.go v1.36.0
github.com/nats-io/nkeys v0.4.15
github.com/nats-io/nuid v1.0.1
github.com/ncruces/go-proxied v0.1.6
github.com/neo4j/neo4j-go-driver/v5 v5.6.0
github.com/neovim/go-client v1.2.1
github.com/nexus-rpc/sdk-go v0.3.0
github.com/nginxinc/nginx-go-crossplane v0.4.86
github.com/nishanths/exhaustive v0.12.0
github.com/nishanths/predeclared v0.2.2
github.com/nxadm/tail v1.4.8
github.com/oapi-codegen/nullable v1.1.0
github.com/oapi-codegen/oapi-codegen/v2 v2.5.0
github.com/oapi-codegen/runtime v1.1.1
github.com/ogen-go/ogen v1.14.0
github.com/ohler55/ojg v1.26.1
github.com/olekukonko/tablewriter v0.0.5
github.com/olivere/elastic/v7 v7.0.32
github.com/onsi/ginkgo v1.16.5
github.com/onsi/ginkgo/v2 v2.22.2
github.com/onsi/gomega v1.36.2
github.com/open-policy-agent/opa v1.1.0
github.com/openai/openai-go v1.12.0
github.com/openconfig/gnmi v0.10.0
github.com/openconfig/goyang v1.4.3
github.com/openconfig/ygot v0.29.15
github.com/opencontainers/go-digest v1.0.0
github.com/opencontainers/image-spec v1.1.1
github.com/openfga/api/proto v0.0.0-20250127102726-f9709139a369
github.com/openfga/language/pkg/go v0.2.0-beta.2.0.20250220223040-ed0cfba54336
github.com/openfga/openfga v1.8.9
github.com/opensearch-project/opensearch-go v1.1.0
github.com/opensearch-project/opensearch-go/v2 v2.3.0
github.com/opensearch-project/opensearch-go/v4 v4.1.0
github.com/opentracing-contrib/go-grpc v0.0.0-20230205024533-5ced129e5996
github.com/opentracing-contrib/go-stdlib v1.0.0
github.com/opentracing/opentracing-go v1.2.0
github.com/osrg/gobgp v0.0.0-20211201041502-6248c576b118
github.com/otiai10/copy v1.14.1
github.com/ozontech/allure-go v0.6.32
github.com/ozontech/allure-go/pkg/allure v0.6.13
github.com/ozontech/allure-go/pkg/framework v0.6.32
github.com/package-url/packageurl-go v0.1.3
github.com/pandatix/go-cvss v0.6.2
github.com/pariz/gountries v0.1.6
github.com/parquet-go/parquet-go v0.24.0
github.com/paulmach/orb v0.11.1
github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58
github.com/pborman/uuid v1.2.1
github.com/pdfcpu/pdfcpu v0.11.1
github.com/pemistahl/lingua-go v1.3.4
github.com/peterh/liner v1.2.2
github.com/phin1x/go-ipp v1.6.1
github.com/pierrec/lz4 v2.6.1+incompatible
github.com/pierrec/lz4/v4 v4.1.23
github.com/pingcap/errors v0.11.5-0.20240311024730-e056997136bb
github.com/pingcap/parser v0.0.0-20210415081931-48e7f467fd74
github.com/pion/datachannel v1.5.10
github.com/pion/ice/v4 v4.0.13
github.com/pion/interceptor v0.1.42
github.com/pion/logging v0.2.4
github.com/pion/rtcp v1.2.16
github.com/pion/rtp v1.8.26
github.com/pion/sctp v1.8.41
github.com/pion/sdp/v3 v3.0.18
github.com/pion/srtp/v3 v3.0.9
github.com/pion/transport/v3 v3.1.1
github.com/pion/webrtc/v3 v3.3.3
github.com/pion/webrtc/v4 v4.1.8
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e
github.com/pkg/errors v0.9.1
github.com/pkg/sftp v1.13.7
github.com/pkg/xattr v0.4.9
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
github.com/polyfloyd/go-errorlint v1.4.7
github.com/pquerna/cachecontrol v0.1.0
github.com/pquerna/ffjson v0.0.0-20190930134022-aa0246cd15f7
github.com/projectcalico/api v0.0.0-20220722155641-439a754a988b
github.com/prometheus-community/pro-bing v0.6.1
github.com/prometheus/client_golang v1.21.1
github.com/prometheus/client_model v0.6.2
github.com/prometheus/common v0.63.0
github.com/prometheus/common/assets v0.2.0
github.com/prometheus/common/sigv4 v0.1.0
github.com/prometheus/procfs v0.16.0
github.com/prometheus/prometheus v0.303.1
github.com/protocolbuffers/txtpbfmt v0.0.0-20240116145035-ef3ab179eed6
github.com/proxy-wasm/proxy-wasm-go-sdk v0.0.0-20260105142703-44c7d5847745
github.com/pseudomuto/protoc-gen-doc v1.5.1
github.com/qdrant/go-client v1.15.2
github.com/r3labs/diff/v3 v3.0.0
github.com/rafaelmartins/usbhid v0.0.0-20240923181811-9aaabf870f67
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475
github.com/redis/go-redis/extra/rediscmd/v9 v9.18.0
github.com/redis/go-redis/extra/redisotel/v9 v9.18.0
github.com/redis/go-redis/v9 v9.18.0
github.com/rekby/fixenv v0.7.0
github.com/riverqueue/river v0.26.0
github.com/riverqueue/river/riverdriver v0.26.0
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.26.0
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.26.0
github.com/riverqueue/river/rivershared v0.26.0
github.com/riverqueue/river/rivertype v0.26.0
github.com/rivo/tview v0.0.0-20220916081518-2e69b7385a37
github.com/rivo/uniseg v0.4.7
github.com/robfig/cron/v3 v3.0.1
github.com/rogpeppe/go-internal v1.14.1
github.com/rqlite/gorqlite v0.0.0-20240122221808-a8a425b1a6aa
github.com/rs/cors v1.11.1
github.com/ryanrolds/sqlclosecheck v0.3.0
github.com/safchain/ethtool v0.4.1
github.com/saintfish/chardet v0.0.0-20230101081208-5e3ef4b5456d
github.com/santhosh-tekuri/jsonschema/v5 v5.3.1
github.com/santhosh-tekuri/jsonschema/v6 v6.0.1
github.com/satori/go.uuid v1.2.0
github.com/scim2/filter-parser/v2 v2.2.0
github.com/sebdah/goldie/v2 v2.7.1
github.com/segmentio/kafka-go v0.4.48
github.com/sergi/go-diff v1.4.0
github.com/serialx/hashring v0.0.0-20200727003509-22c0c7ab6b1b
github.com/sethvargo/go-retry v0.3.0
github.com/shakinm/xlsReader v0.9.12
github.com/shirou/gopsutil v3.21.11+incompatible
github.com/shirou/gopsutil/v3 v3.24.2
github.com/shopspring/decimal v1.4.0
github.com/siddontang/go-log v0.0.0-20190221022429-1e957dd83bed
github.com/siddontang/go-mysql v0.0.0-20200622032841-a8c16ae9a9cb
github.com/sideshow/apns2 v0.23.0
github.com/sijms/go-ora/v2 v2.8.19
github.com/sirupsen/logrus v1.9.3
github.com/smacker/go-tree-sitter v0.0.0-20230720070738-0d0a9f78d8f8
github.com/smallstep/certificates v0.25.2
github.com/smallstep/cli v0.25.1
github.com/smallstep/pkcs7 v0.1.1
github.com/smira/go-statsd v1.3.2
github.com/sony/gobreaker v1.0.0
github.com/sony/gobreaker/v2 v2.4.0
github.com/sony/sonyflake v1.2.0
github.com/sparrc/go-ping v0.0.0-20190613174326-4e5b6552494c
github.com/spf13/afero v1.12.0
github.com/spf13/cast v1.7.1
github.com/spf13/cobra v1.10.2
github.com/spf13/pflag v1.0.10
github.com/spf13/viper v1.20.1
github.com/spiral/endure v1.0.4
github.com/spiral/goridge/v3 v3.2.7
github.com/spiral/roadrunner/v2 v2.4.0
github.com/sqlc-dev/sqlc v1.29.0
github.com/ssgreg/nlreturn/v2 v2.2.1
github.com/streadway/amqp v1.0.0
github.com/stretchr/testify v1.11.1
github.com/stripe/krl v0.0.0-20220202203423-9dc12b164150
github.com/strongswan/govici v0.7.0
github.com/swaggo/echo-swagger v1.4.1
github.com/swaggo/files/v2 v2.0.0
github.com/swaggo/http-swagger/v2 v2.0.1
github.com/swaggo/swag v1.16.3
github.com/tarm/serial v0.0.0-20180830185346-98f6abe2eb07
github.com/tc-hib/winres v0.2.0
github.com/tdewolff/minify/v2 v2.12.9
github.com/temporalio/cli v1.3.0
github.com/temporalio/omes v1.0.0
github.com/temporalio/omes/workers/go v0.0.0-20240701113332-211647aa9dae
github.com/temporalio/ui-server/v2 v2.40.0
github.com/terminalstatic/go-xsd-validate v0.1.6
github.com/testcontainers/testcontainers-go v0.40.0
github.com/tidwall/gjson v1.18.0
github.com/tidwall/sjson v1.2.5
github.com/tiktoken-go/tokenizer v0.7.0
github.com/timakin/bodyclose v0.0.0-20230421092635-574207250966
github.com/tink-crypto/tink-go/v2 v2.2.0
github.com/tinylib/msgp v1.5.0
github.com/tmccombs/hcl2json v0.5.0
github.com/tommy-muehle/go-mnd/v2 v2.5.1
github.com/trinodb/trino-go-client v0.313.0
github.com/tus/tusd v1.4.0
github.com/twmb/franz-go v1.17.0
github.com/twmb/franz-go/pkg/kadm v1.12.0
github.com/twmb/franz-go/pkg/kmsg v1.8.0
github.com/twmb/murmur3 v1.1.8
github.com/uber-go/tally v3.5.0+incompatible
github.com/uber-go/tally/v4 v4.1.17
github.com/uber/h3-go/v4 v4.3.0
github.com/uber/jaeger-client-go v2.30.0+incompatible
github.com/uber/jaeger-lib v2.4.1+incompatible
github.com/ugorji/go/codec v1.3.0
github.com/ulikunitz/xz v0.5.12
github.com/urfave/cli v1.22.16
github.com/urfave/cli/v2 v2.27.7
github.com/urfave/cli/v3 v3.6.1
github.com/vakenbolt/go-test-report v0.9.3
github.com/valkey-io/valkey-go v1.0.66
github.com/valkey-io/valkey-go/mock v1.0.66
github.com/valkey-io/valkey-go/valkeycompat v1.0.60
github.com/valkey-io/valkey-go/valkeyhook v1.0.66
github.com/valkey-io/valkey-go/valkeyotel v1.0.66
github.com/valyala/fastjson v1.6.4
github.com/valyala/fasttemplate v1.2.2
github.com/vbauerster/mpb v3.4.0+incompatible
github.com/vbauerster/mpb/v8 v8.7.1
github.com/vektah/gqlparser/v2 v2.5.31
github.com/vertica/vertica-sql-go v1.3.3
github.com/vishvananda/netlink v1.3.1
github.com/vishvananda/netns v0.0.5
github.com/vmihailenco/msgpack v4.0.4+incompatible
github.com/vmihailenco/msgpack/v4 v4.3.12
github.com/vmihailenco/msgpack/v5 v5.4.1
github.com/vrischmann/envconfig v1.3.0
github.com/wI2L/jsondiff v0.6.0
github.com/walkerus/go-wiremock v1.3.0
github.com/weppos/publicsuffix-go v0.50.0
github.com/wk8/go-win-iscsidsc v0.0.0-20190724224204-4e4ffe953c77
github.com/wneessen/go-mail v0.5.2
github.com/wundergraph/astjson v0.0.0-20250106123708-be463c97e083
github.com/wundergraph/graphql-go-tools/v2 v2.0.0-rc.220
github.com/xanzy/go-gitlab v0.73.1
github.com/xdg-go/scram v1.1.2
github.com/xdg-go/stringprep v1.0.4
github.com/xitongsys/parquet-go v1.6.2
github.com/xlab/treeprint v1.2.0
github.com/xuri/excelize/v2 v2.9.1
github.com/yandex-cloud/go-genproto v0.37.0
github.com/yandex-cloud/go-sdk v0.28.0
github.com/yandex-cloud/kms-clients-go/yckmstink v0.0.0-20200608135605-a61de9ba71a6
github.com/yandex/pandora v0.5.3
github.com/ybbus/jsonrpc/v3 v3.1.1
github.com/ydb-platform/fq-connector-go v0.9.3-rc.1
github.com/ydb-platform/ydb-go-genproto v0.0.0-20260128080146-c4ed16b24b37
github.com/ydb-platform/ydb-go-sdk-auth-environ v0.2.0
github.com/ydb-platform/ydb-go-sdk-metrics v0.18.0
github.com/ydb-platform/ydb-go-sdk-opentracing v0.13.0
github.com/ydb-platform/ydb-go-sdk-otel v0.10.1
github.com/ydb-platform/ydb-go-sdk-prometheus v0.12.1
github.com/ydb-platform/ydb-go-sdk-prometheus/v2 v2.0.1
github.com/ydb-platform/ydb-go-sdk-zap v0.16.0
github.com/ydb-platform/ydb-go-sdk-zerolog v0.14.0
github.com/ydb-platform/ydb-go-sdk/v3 v3.127.3
github.com/ydb-platform/ydb-go-yc v0.12.3
github.com/ydb-platform/ydb-go-yc-metadata v0.6.1
github.com/ydb-platform/ydbops v0.0.24
github.com/yourbasic/graph v0.0.0-20210606180040-8ecfec1c2869
github.com/ysmood/gson v0.7.3
github.com/yuin/goldmark v1.7.13
github.com/yuin/gopher-lua v1.1.1
github.com/zaf/g711 v0.0.0-20220109202201-cf0017bf0359
github.com/zclconf/go-cty v1.16.4
github.com/zeebo/bencode v1.0.0
github.com/zhangjianweibj/prometheus-libvirt-exporter v1.1.0
github.com/zimmski/go-mutesting v0.0.0-20210610104036-6d9217011a00
gitlab.com/metakeule/fmtdate v1.2.2
go.etcd.io/bbolt v1.4.1
go.etcd.io/etcd v0.5.0-alpha.5.0.20240613141046-5cd1d285d744
go.etcd.io/etcd/raft/v3 v3.5.13
go.mongodb.org/mongo-driver v1.17.3
go.mongodb.org/mongo-driver/v2 v2.4.0
go.mozilla.org/pkcs7 v0.9.0
go.opentelemetry.io/collector v0.121.0
go.opentelemetry.io/collector/client v1.50.0
go.opentelemetry.io/collector/component v1.50.0
go.opentelemetry.io/collector/component/componentstatus v0.121.0
go.opentelemetry.io/collector/component/componenttest v0.144.0
go.opentelemetry.io/collector/config/configauth v0.121.0
go.opentelemetry.io/collector/config/configcompression v1.27.0
go.opentelemetry.io/collector/config/configgrpc v0.121.0
go.opentelemetry.io/collector/config/confighttp v0.121.0
go.opentelemetry.io/collector/config/confignet v1.27.0
go.opentelemetry.io/collector/config/configopaque v1.27.0
go.opentelemetry.io/collector/config/configretry v1.27.0
go.opentelemetry.io/collector/config/configtelemetry v0.121.0
go.opentelemetry.io/collector/config/configtls v1.27.0
go.opentelemetry.io/collector/confmap v1.27.0
go.opentelemetry.io/collector/confmap/provider/fileprovider v1.27.0
go.opentelemetry.io/collector/confmap/provider/yamlprovider v1.27.0
go.opentelemetry.io/collector/confmap/xconfmap v0.121.0
go.opentelemetry.io/collector/connector v0.121.0
go.opentelemetry.io/collector/connector/connectortest v0.121.0
go.opentelemetry.io/collector/connector/xconnector v0.121.0
go.opentelemetry.io/collector/consumer v1.50.0
go.opentelemetry.io/collector/consumer/consumererror v0.144.0
go.opentelemetry.io/collector/consumer/consumertest v0.144.0
go.opentelemetry.io/collector/consumer/xconsumer v0.144.0
go.opentelemetry.io/collector/exporter v0.121.0
go.opentelemetry.io/collector/exporter/exportertest v0.121.0
go.opentelemetry.io/collector/exporter/xexporter v0.121.0
go.opentelemetry.io/collector/extension v1.27.0
go.opentelemetry.io/collector/extension/extensionauth v0.121.0
go.opentelemetry.io/collector/extension/extensionauth/extensionauthtest v0.121.0
go.opentelemetry.io/collector/extension/extensioncapabilities v0.121.0
go.opentelemetry.io/collector/extension/extensiontest v0.121.0
go.opentelemetry.io/collector/extension/xextension v0.121.0
go.opentelemetry.io/collector/extension/zpagesextension v0.121.0
go.opentelemetry.io/collector/featuregate v1.50.0
go.opentelemetry.io/collector/internal/componentalias v0.144.0
go.opentelemetry.io/collector/internal/fanoutconsumer v0.121.0
go.opentelemetry.io/collector/internal/sharedcomponent v0.121.0
go.opentelemetry.io/collector/internal/telemetry v0.121.0
go.opentelemetry.io/collector/otelcol v0.121.0
go.opentelemetry.io/collector/pdata v1.50.0
go.opentelemetry.io/collector/pdata/pprofile v0.144.0
go.opentelemetry.io/collector/pdata/testdata v0.144.0
go.opentelemetry.io/collector/pipeline v1.50.0
go.opentelemetry.io/collector/pipeline/xpipeline v0.144.0
go.opentelemetry.io/collector/processor v0.121.0
go.opentelemetry.io/collector/processor/processortest v0.121.0
go.opentelemetry.io/collector/processor/xprocessor v0.121.0
go.opentelemetry.io/collector/receiver v1.50.0
go.opentelemetry.io/collector/receiver/otlpreceiver v0.121.0
go.opentelemetry.io/collector/receiver/receiverhelper v0.144.0
go.opentelemetry.io/collector/receiver/receivertest v0.144.0
go.opentelemetry.io/collector/receiver/xreceiver v0.144.0
go.opentelemetry.io/collector/semconv v0.121.0
go.opentelemetry.io/collector/service v0.121.0
go.opentelemetry.io/collector/service/hostcapabilities v0.121.0
go.opentelemetry.io/contrib/bridges/otelzap v0.12.0
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.63.0
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.60.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.62.0
go.opentelemetry.io/contrib/propagators/b3 v1.34.0
go.opentelemetry.io/contrib/propagators/jaeger v1.34.0
go.opentelemetry.io/otel v1.39.0
go.opentelemetry.io/otel/bridge/opencensus v0.45.0
go.opentelemetry.io/otel/bridge/opentracing v1.28.0
go.opentelemetry.io/otel/exporters/jaeger v1.17.0
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.16.0
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc v0.10.0
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp v0.10.0
go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.42.0
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.37.0
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.34.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.37.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.37.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.35.0
go.opentelemetry.io/otel/exporters/prometheus v0.57.0
go.opentelemetry.io/otel/exporters/stdout/stdoutlog v0.10.0
go.opentelemetry.io/otel/exporters/stdout/stdoutmetric v1.39.0
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.34.0
go.opentelemetry.io/otel/log v0.13.0
go.opentelemetry.io/otel/log/logtest v0.13.0
go.opentelemetry.io/otel/metric v1.39.0
go.opentelemetry.io/otel/sdk v1.39.0
go.opentelemetry.io/otel/sdk/log v0.12.2
go.opentelemetry.io/otel/sdk/log/logtest v0.0.0-20250521073539-a85ae98dcedc
go.opentelemetry.io/otel/sdk/metric v1.39.0
go.opentelemetry.io/otel/trace v1.39.0
go.opentelemetry.io/proto/otlp v1.7.0
go.starlark.net v0.0.0-20250701195324-d457b4515e0e
go.step.sm/cli-utils v0.8.0
go.step.sm/crypto v0.38.0
go.temporal.io/api v1.50.1