-
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage_versions.txt
More file actions
executable file
·1340 lines (1340 loc) · 191 KB
/
package_versions.txt
File metadata and controls
executable file
·1340 lines (1340 loc) · 191 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
NAME VERSION TYPE
adduser 3.153ubuntu1 deb
adwaita-icon-theme 50.0-1 deb
aiofiles 25.1.0 python
aiohappyeyeballs 2.6.1 python
aiohttp 3.13.5 python
aioice 0.10.2 python
aiosignal 1.4.0 python
apt 3.2.0 deb
apt-transport-https 3.2.0 deb
apt-utils 3.2.0 deb
at-spi2-common 2.60.0-1 deb
attrs 26.1.0 python
autocommand 2.2.2 python (+1 duplicate)
av 17.0.1 python
backports-tarfile 1.2.0 python
base-files 14ubuntu6 deb
base-passwd 3.6.8 deb
bash 5.3-2ubuntu1 deb
bash-completion 1:2.16.0-8build1 deb
bcrypt 5.0.0 python
binutils 2.46-3ubuntu2 deb
binutils-common 2.46-3ubuntu2 deb
binutils-x86-64-linux-gnu 2.46-3ubuntu2 deb
blinker 1.9.0 python
breeze-cursor-theme 4:6.6.4-0ubuntu1 deb
bsdextrautils 2.41.3-3ubuntu2 deb
bsdutils 1:2.41.3-3ubuntu2 deb
bubblewrap 0.11.1-1 deb
ca-certificates 20260223 deb
catatonit 0.2.1-2build1 deb
cffi 2.0.0 python
cloud.google.com/go/auth v0.18.2 go-module
cloud.google.com/go/auth/oauth2adapt v0.2.8 go-module
cloud.google.com/go/compute/metadata v0.9.0 go-module
cloud.google.com/go/logging v1.13.2 go-module
cloud.google.com/go/longrunning v0.8.0 go-module
cmake 4.2.3-2ubuntu2 deb
cmake-data 4.2.3-2ubuntu2 deb
code.cloudfoundry.org/clock v1.60.0 go-module
console-data 2:1.12-10 deb
console-setup 1.237ubuntu3 deb
console-setup-linux 1.237ubuntu3 deb
containerd.io 2.2.3-1~ubuntu.26.04~resolute deb
coreutils 9.5-1ubuntu2+0.0.0~ubuntu25 deb
coreutils-from-uutils 0.0.0~ubuntu25 deb
cpp 4:15.2.0-5ubuntu1 deb
cpp-15 15.2.0-16ubuntu1 deb
cpp-15-x86-64-linux-gnu 15.2.0-16ubuntu1 deb
cpp-x86-64-linux-gnu 4:15.2.0-5ubuntu1 deb
cron 3.0pl1-200ubuntu1 deb
cron-daemon-common 3.0pl1-200ubuntu1 deb
cryptography 46.0.5 python
curl 8.18.0-1ubuntu2 deb
dario.cat/mergo v1.0.2 go-module (+1 duplicate)
dash 0.5.12-12ubuntu3 deb
dbus 1.16.2-2ubuntu4 deb
dbus-bin 1.16.2-2ubuntu4 deb
dbus-daemon 1.16.2-2ubuntu4 deb
dbus-python 1.4.0 python
dbus-session-bus-common 1.16.2-2ubuntu4 deb
dbus-system-bus-common 1.16.2-2ubuntu4 deb
dbus-x11 1.16.2-2ubuntu4 deb
dconf-gsettings-backend 0.49.0-4 deb
dconf-service 0.49.0-4 deb
debconf 1.5.92 deb
debianutils 5.23.2build1 deb
diffutils 1:3.12-1 deb
dirmngr 2.4.8-4ubuntu3 deb
distro 1.9.0 python
distro-info-data 0.68build1 deb
dnspython 2.8.0 python
docker-buildx-plugin 0.33.0-1~ubuntu.26.04~resolute deb
docker-ce 5:29.4.1-1~ubuntu.26.04~resolute deb
docker-ce-cli 5:29.4.1-1~ubuntu.26.04~resolute deb
docker-compose-plugin 5.1.3-1~ubuntu.26.04~resolute deb
dpkg 1.23.7ubuntu1 deb
dunst 1.12.2-1build1 deb
e2fsprogs 1.47.2-3ubuntu4 deb
evdev 1.9.3 python
file 1:5.46-5build2 deb
findutils 4.10.0-3build2 deb
firefox 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-af 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-an 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-ar 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-as 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-ast 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-az 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-be 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-bg 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-bn 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-br 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-bs 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-ca 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-cak 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-cs 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-csb 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-cy 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-da 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-de 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-el 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-en 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-eo 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-es 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-et 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-eu 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-fa 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-fi 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-fr 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-fy 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-ga 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-gd 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-gl 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-gn 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-gu 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-he 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-hi 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-hr 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-hsb 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-hu 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-hy 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-ia 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-id 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-is 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-it 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-ja 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-ka 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-kab 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-kk 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-km 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-kn 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-ko 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-ku 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-lg 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-lt 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-lv 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-mai 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-mk 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-ml 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-mn 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-mr 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-ms 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-my 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-nb 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-ne 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-nl 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-nn 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-nso 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-oc 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-or 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-pa 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-pl 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-pt 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-ro 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-ru 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-si 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-sk 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-sl 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-sq 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-sr 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-sv 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-sw 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-szl 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-ta 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-te 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-tg 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-th 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-tr 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-uk 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-ur 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-uz 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-vi 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-xh 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-zh-hans 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-zh-hant 1:150.0+build1-1xtradeb1.2604.1 deb
firefox-locale-zu 1:150.0+build1-1xtradeb1.2604.1 deb
fontconfig 2.17.1-3ubuntu1 deb
fontconfig-config 2.17.1-3ubuntu1 deb
fonts-noto-cjk 1:20240730+repack1-1build1 deb
fonts-noto-color-emoji 2.051-1build1 deb
fonts-noto-core 20201225-2build1 deb
fonts-noto-mono 20201225-2build1 deb
fonts-urw-base35 20200910-8build1 deb
foot 1.25.0-1 deb
frozenlist 1.8.0 python
fuse-overlayfs 1.14-1build2 deb
fuse3 3.18.2-1 deb
g++ 4:15.2.0-5ubuntu1 deb
g++-15 15.2.0-16ubuntu1 deb
g++-15-x86-64-linux-gnu 15.2.0-16ubuntu1 deb
g++-x86-64-linux-gnu 4:15.2.0-5ubuntu1 deb
gcc 4:15.2.0-5ubuntu1 deb
gcc-15 15.2.0-16ubuntu1 deb
gcc-15-base 15.2.0-16ubuntu1 deb
gcc-15-x86-64-linux-gnu 15.2.0-16ubuntu1 deb
gcc-16-base 16-20260322-1ubuntu1 deb
gcc-x86-64-linux-gnu 4:15.2.0-5ubuntu1 deb
gir1.2-girepository-3.0 2.88.0-1 deb
gir1.2-glib-2.0 2.88.0-1 deb
gir1.2-packagekitglib-1.0 1.3.4-3ubuntu1 deb
git 1:2.53.0-1ubuntu1 deb
git-man 1:2.53.0-1ubuntu1 deb
github.com/AlecAivazis/survey/v2 v2.3.7 go-module
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.21.0 go-module
github.com/Azure/azure-sdk-for-go/sdk/internal v1.11.2 go-module
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.5.0 go-module
github.com/DefangLabs/secret-detector v0.0.0-20250403165618-22662109213e go-module
github.com/GehirnInc/crypt v0.0.0-20230320061759-8cc1b52080c5 go-module
github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module
github.com/Masterminds/semver/v3 v3.4.0 go-module
github.com/Microsoft/hcsshim v0.14.1 go-module (+2 duplicates)
github.com/ProtonMail/go-crypto v1.3.0 go-module (+1 duplicate)
github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d go-module
github.com/agext/levenshtein v1.2.3 go-module (+1 duplicate)
github.com/agnivade/levenshtein v1.2.1 go-module
github.com/anchore/go-struct-converter v0.1.0 go-module
github.com/apparentlymart/go-cidr v1.0.1 go-module
github.com/apparentlymart/go-textseg/v15 v15.0.0 go-module
github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2 go-module
github.com/armon/go-metrics v0.4.1 go-module
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 go-module (+1 duplicate)
github.com/aws/aws-sdk-go-v2 v1.41.4 go-module
github.com/aws/aws-sdk-go-v2 v1.41.5 go-module
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.8 go-module
github.com/aws/aws-sdk-go-v2/config v1.32.12 go-module
github.com/aws/aws-sdk-go-v2/config v1.32.13 go-module
github.com/aws/aws-sdk-go-v2/credentials v1.19.12 go-module
github.com/aws/aws-sdk-go-v2/credentials v1.19.13 go-module
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.20 go-module
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.21 go-module
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.20 go-module
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.21 go-module
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.20 go-module
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.21 go-module
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.6 go-module (+1 duplicate)
github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.66.0 go-module
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.7 go-module (+1 duplicate)
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.20 go-module
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.21 go-module
github.com/aws/aws-sdk-go-v2/service/signin v1.0.8 go-module
github.com/aws/aws-sdk-go-v2/service/signin v1.0.9 go-module
github.com/aws/aws-sdk-go-v2/service/sso v1.30.13 go-module
github.com/aws/aws-sdk-go-v2/service/sso v1.30.14 go-module
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.17 go-module
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.18 go-module
github.com/aws/aws-sdk-go-v2/service/sts v1.41.10 go-module
github.com/aws/aws-sdk-go-v2/service/sts v1.41.9 go-module
github.com/aws/smithy-go v1.24.2 go-module
github.com/aws/smithy-go v1.25.0 go-module
github.com/beorn7/perks v1.0.1 go-module (+2 duplicates)
github.com/bits-and-blooms/bitset v1.13.0 go-module
github.com/blang/semver v3.5.1+incompatible go-module (+1 duplicate)
github.com/buger/goterm v1.0.4 go-module
github.com/canonical/go-flags v0.0.0-20230403090104-105d09a091b8 go-module
github.com/canonical/pebble v1.30.2-0.20260416224941-1b3384178e3f go-module
github.com/canonical/x-go v0.0.0-20230522092633-7947a7587f5b go-module
github.com/cenkalti/backoff/v4 v4.3.0 go-module
github.com/cenkalti/backoff/v5 v5.0.3 go-module (+2 duplicates)
github.com/cespare/xxhash/v2 v2.3.0 go-module (+3 duplicates)
github.com/checkpoint-restore/checkpointctl v1.4.0 go-module
github.com/checkpoint-restore/go-criu/v6 v6.3.0 go-module
github.com/checkpoint-restore/go-criu/v7 v7.2.0 go-module
github.com/cilium/ebpf v0.16.0 go-module (+2 duplicates)
github.com/cilium/ebpf v0.17.3 go-module (+1 duplicate)
github.com/cloudflare/cfssl v1.6.5 go-module
github.com/cloudflare/circl v1.6.3 go-module (+1 duplicate)
github.com/compose-spec/compose-go/v2 v2.10.2 go-module
github.com/compose-spec/compose-go/v2 v2.9.1 go-module
github.com/container-storage-interface/spec v1.5.0 go-module
github.com/containerd/accelerated-container-image v1.3.0 go-module
github.com/containerd/btrfs/v2 v2.0.0 go-module
github.com/containerd/cgroups/v3 v3.1.2 go-module (+2 duplicates)
github.com/containerd/cgroups/v3 v3.1.3 go-module
github.com/containerd/console v1.0.5 go-module (+6 duplicates)
github.com/containerd/containerd/api v1.10.0 go-module (+5 duplicates)
github.com/containerd/containerd/v2 v2.2.2 go-module
github.com/containerd/containerd/v2 v2.2.3 go-module (+4 duplicates)
github.com/containerd/continuity v0.4.5 go-module (+5 duplicates)
github.com/containerd/errdefs v1.0.0 go-module (+5 duplicates)
github.com/containerd/errdefs/pkg v0.3.0 go-module (+5 duplicates)
github.com/containerd/fifo v1.1.0 go-module (+3 duplicates)
github.com/containerd/go-cni v1.1.13 go-module (+2 duplicates)
github.com/containerd/go-runc v1.1.0 go-module (+3 duplicates)
github.com/containerd/imgcrypt/v2 v2.0.1 go-module
github.com/containerd/log v0.1.0 go-module (+6 duplicates)
github.com/containerd/nri v0.11.0 go-module (+1 duplicate)
github.com/containerd/otelttrpc v0.1.0 go-module
github.com/containerd/platforms v1.0.0-rc.2 go-module (+3 duplicates)
github.com/containerd/platforms v1.0.0-rc.4 go-module
github.com/containerd/plugin v1.0.0 go-module (+3 duplicates)
github.com/containerd/stargz-snapshotter/estargz v0.18.2 go-module
github.com/containerd/ttrpc v1.2.7 go-module (+2 duplicates)
github.com/containerd/ttrpc v1.2.8 go-module (+2 duplicates)
github.com/containerd/typeurl/v2 v2.2.3 go-module (+5 duplicates)
github.com/containerd/zfs/v2 v2.0.0 go-module
github.com/containernetworking/cni v1.3.0 go-module (+2 duplicates)
github.com/containernetworking/plugins v1.9.0 go-module
github.com/containernetworking/plugins v1.9.1 go-module
github.com/containers/ocicrypt v1.2.1 go-module
github.com/coreos/go-semver v0.3.1 go-module
github.com/coreos/go-systemd/v22 v22.5.0 go-module
github.com/coreos/go-systemd/v22 v22.6.0 go-module (+2 duplicates)
github.com/coreos/go-systemd/v22 v22.7.0 go-module
github.com/cyberphone/json-canonicalization v0.0.0-20241213102144-19d51d7fe467 go-module (+1 duplicate)
github.com/cyphar/filepath-securejoin v0.5.1 go-module (+1 duplicate)
github.com/cyphar/filepath-securejoin v0.5.2 go-module
github.com/cyphar/filepath-securejoin v0.6.0 go-module
github.com/davecgh/go-spew v1.1.1 go-module
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc go-module (+1 duplicate)
github.com/digitorus/pkcs7 v0.0.0-20230818184609-3a137a874352 go-module (+1 duplicate)
github.com/digitorus/timestamp v0.0.0-20231217203849-220c5c2851b7 go-module (+1 duplicate)
github.com/dimchansky/utfbom v1.1.1 go-module
github.com/distribution/reference v0.6.0 go-module (+4 duplicates)
github.com/docker/buildx v0.33.0 go-module (+1 duplicate)
github.com/docker/cli v29.3.1+incompatible go-module
github.com/docker/cli v29.4.0+incompatible go-module
github.com/docker/cli-docs-tool v0.11.0 go-module
github.com/docker/cli/cmd/docker UNKNOWN go-module
github.com/docker/compose/v5 v5.1.3 go-module
github.com/docker/distribution v2.8.3+incompatible go-module
github.com/docker/docker v28.5.2+incompatible go-module (+1 duplicate)
github.com/docker/docker-credential-helpers v0.9.5 go-module (+1 duplicate)
github.com/docker/go-connections v0.6.0 go-module (+1 duplicate)
github.com/docker/go-connections v0.7.0 go-module
github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c go-module
github.com/docker/go-events v0.0.0-20250808211157-605354379745 go-module
github.com/docker/go-metrics v0.0.1 go-module (+1 duplicate)
github.com/docker/go-units v0.5.0 go-module (+6 duplicates)
github.com/dustin/go-humanize v1.0.1 go-module
github.com/eiannone/keyboard v0.0.0-20220611211555-0d226195f203 go-module
github.com/emicklei/go-restful/v3 v3.13.0 go-module
github.com/felixge/httpsnoop v1.0.4 go-module (+4 duplicates)
github.com/fernet/fernet-go v0.0.0-20240119011108-303da6aec611 go-module
github.com/fluent/fluent-logger-golang v1.10.1 go-module
github.com/fsnotify/fsnotify v1.9.0 go-module (+2 duplicates)
github.com/fvbommel/sortorder v1.1.0 go-module (+1 duplicate)
github.com/fxamacker/cbor/v2 v2.9.0 go-module (+2 duplicates)
github.com/go-ini/ini v1.67.0 go-module
github.com/go-jose/go-jose/v4 v4.1.3 go-module
github.com/go-logr/logr v1.4.3 go-module (+4 duplicates)
github.com/go-logr/stdr v1.2.2 go-module (+4 duplicates)
github.com/go-openapi/analysis v0.24.3 go-module (+1 duplicate)
github.com/go-openapi/errors v0.22.7 go-module (+1 duplicate)
github.com/go-openapi/jsonpointer v0.22.5 go-module (+1 duplicate)
github.com/go-openapi/jsonreference v0.21.5 go-module (+1 duplicate)
github.com/go-openapi/loads v0.23.3 go-module (+1 duplicate)
github.com/go-openapi/runtime v0.29.2 go-module
github.com/go-openapi/runtime v0.29.3 go-module
github.com/go-openapi/spec v0.22.4 go-module (+1 duplicate)
github.com/go-openapi/strfmt v0.26.1 go-module (+1 duplicate)
github.com/go-openapi/swag v0.25.4 go-module
github.com/go-openapi/swag v0.25.5 go-module
github.com/go-openapi/swag/cmdutils v0.25.4 go-module
github.com/go-openapi/swag/cmdutils v0.25.5 go-module
github.com/go-openapi/swag/conv v0.25.5 go-module (+1 duplicate)
github.com/go-openapi/swag/fileutils v0.25.5 go-module (+1 duplicate)
github.com/go-openapi/swag/jsonname v0.25.5 go-module (+1 duplicate)
github.com/go-openapi/swag/jsonutils v0.25.5 go-module (+1 duplicate)
github.com/go-openapi/swag/loading v0.25.5 go-module (+1 duplicate)
github.com/go-openapi/swag/mangling v0.25.5 go-module (+1 duplicate)
github.com/go-openapi/swag/netutils v0.25.4 go-module
github.com/go-openapi/swag/netutils v0.25.5 go-module
github.com/go-openapi/swag/stringutils v0.25.5 go-module (+1 duplicate)
github.com/go-openapi/swag/typeutils v0.25.5 go-module (+1 duplicate)
github.com/go-openapi/swag/yamlutils v0.25.5 go-module (+1 duplicate)
github.com/go-openapi/validate v0.25.2 go-module (+1 duplicate)
github.com/go-viper/mapstructure/v2 v2.5.0 go-module (+2 duplicates)
github.com/gobwas/glob v0.2.3 go-module
github.com/godbus/dbus/v5 v5.1.0 go-module (+3 duplicates)
github.com/godbus/dbus/v5 v5.2.2 go-module
github.com/gofrs/flock v0.13.0 go-module (+2 duplicates)
github.com/gogo/protobuf v1.3.2 go-module (+5 duplicates)
github.com/golang-jwt/jwt/v5 v5.3.0 go-module (+1 duplicate)
github.com/golang/gddo v0.0.0-20210115222349-20d68f94ee1f go-module
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 go-module
github.com/golang/protobuf v1.5.4 go-module (+3 duplicates)
github.com/golang/snappy v1.0.0 go-module
github.com/google/btree v1.1.3 go-module
github.com/google/certificate-transparency-go v1.3.2 go-module (+1 duplicate)
github.com/google/go-cmp v0.7.0 go-module (+5 duplicates)
github.com/google/go-containerregistry v0.20.7 go-module (+1 duplicate)
github.com/google/go-dap v0.12.1-0.20250904181021-d7a2259b058b go-module
github.com/google/s2a-go v0.1.9 go-module
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module (+2 duplicates)
github.com/google/uuid v1.6.0 go-module (+3 duplicates)
github.com/googleapis/enterprise-certificate-proxy v0.3.14 go-module
github.com/googleapis/gax-go/v2 v2.19.0 go-module
github.com/gorilla/mux v1.8.1 go-module (+1 duplicate)
github.com/gorilla/websocket v1.5.1 go-module
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 go-module (+1 duplicate)
github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.1.0 go-module
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.1.0 go-module
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 go-module
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.1 go-module
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.7 go-module
github.com/grpc-ecosystem/grpc-gateway/v2 v2.28.0 go-module (+1 duplicate)
github.com/hashicorp/errwrap v1.1.0 go-module (+1 duplicate)
github.com/hashicorp/go-cleanhttp v0.5.2 go-module (+1 duplicate)
github.com/hashicorp/go-cty-funcs v0.0.0-20250818135842-6aab67130928 go-module
github.com/hashicorp/go-immutable-radix v1.3.1 go-module
github.com/hashicorp/go-immutable-radix/v2 v2.1.0 go-module
github.com/hashicorp/go-memdb v1.3.5 go-module
github.com/hashicorp/go-metrics v0.5.4 go-module
github.com/hashicorp/go-msgpack/v2 v2.1.5 go-module
github.com/hashicorp/go-multierror v1.1.1 go-module (+1 duplicate)
github.com/hashicorp/go-sockaddr v1.0.7 go-module
github.com/hashicorp/go-version v1.9.0 go-module
github.com/hashicorp/golang-lru v1.0.2 go-module
github.com/hashicorp/golang-lru/v2 v2.0.7 go-module
github.com/hashicorp/hcl/v2 v2.24.0 go-module
github.com/hashicorp/memberlist v0.5.4 go-module
github.com/hashicorp/serf v0.10.2 go-module
github.com/hiddeco/sshsig v0.2.0 go-module (+1 duplicate)
github.com/in-toto/attestation v1.1.2 go-module (+2 duplicates)
github.com/in-toto/in-toto-golang v0.10.0 go-module (+2 duplicates)
github.com/inhies/go-bytesize v0.0.0-20220417184213-4913239db9cf go-module
github.com/intel/goresctrl v0.10.0 go-module (+1 duplicate)
github.com/ishidawataru/sctp v0.0.0-20251114114122-19ddcbc6aae2 go-module (+1 duplicate)
github.com/jmoiron/sqlx v1.4.0 go-module
github.com/jonboulle/clockwork v0.5.0 go-module
github.com/json-iterator/go v1.1.12 go-module (+1 duplicate)
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module
github.com/klauspost/compress v1.18.5 go-module (+4 duplicates)
github.com/knqyf263/go-plugin v0.9.0 go-module (+1 duplicate)
github.com/lestrrat-go/blackmagic v1.0.4 go-module
github.com/lestrrat-go/dsig v1.0.0 go-module
github.com/lestrrat-go/httpcc v1.0.1 go-module
github.com/lestrrat-go/httprc/v3 v3.0.1 go-module
github.com/lestrrat-go/jwx/v3 v3.0.11 go-module
github.com/lestrrat-go/option v1.0.1 go-module
github.com/lestrrat-go/option/v2 v2.0.0 go-module
github.com/mattn/go-colorable v0.1.14 go-module
github.com/mattn/go-isatty v0.0.20 go-module
github.com/mattn/go-runewidth v0.0.16 go-module (+1 duplicate)
github.com/mattn/go-shellwords v1.0.12 go-module (+1 duplicate)
github.com/mdlayher/socket v0.5.1 go-module (+2 duplicates)
github.com/mdlayher/vsock v1.2.1 go-module (+2 duplicates)
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module
github.com/miekg/dns v1.1.72 go-module
github.com/miekg/pkcs11 v1.1.1 go-module
github.com/mistifyio/go-zfs/v3 v3.0.1 go-module
github.com/mistifyio/go-zfs/v4 v4.0.0 go-module
github.com/mitchellh/copystructure v1.2.0 go-module
github.com/mitchellh/go-wordwrap v1.0.1 go-module
github.com/mitchellh/hashstructure/v2 v2.0.2 go-module (+2 duplicates)
github.com/mitchellh/reflectwalk v1.0.2 go-module
github.com/moby/buildkit v0.29.0 go-module (+2 duplicates)
github.com/moby/docker-image-spec v1.3.1 go-module (+2 duplicates)
github.com/moby/go-archive v0.2.0 go-module (+2 duplicates)
github.com/moby/ipvs v1.1.0 go-module
github.com/moby/locker v1.0.1 go-module (+4 duplicates)
github.com/moby/moby/api v1.54.0 go-module
github.com/moby/moby/api v1.54.1 go-module
github.com/moby/moby/api v1.54.2 go-module
github.com/moby/moby/client v0.3.0 go-module
github.com/moby/moby/client v0.4.0 go-module
github.com/moby/moby/v2 v29.4.1 go-module (+1 duplicate)
github.com/moby/patternmatcher v0.6.1 go-module (+2 duplicates)
github.com/moby/policy-helpers v0.0.0-20260324161837-b7c0b994300b go-module (+1 duplicate)
github.com/moby/profiles/apparmor v0.1.0 go-module
github.com/moby/profiles/seccomp v0.1.0 go-module
github.com/moby/pubsub v1.0.0 go-module
github.com/moby/spdystream v0.5.0 go-module
github.com/moby/spdystream v0.5.1 go-module
github.com/moby/swarmkit/v2 v2.1.2-0.20251110192100-17b8d222e7dd go-module
github.com/moby/sys/atomicwriter v0.1.0 go-module (+2 duplicates)
github.com/moby/sys/capability v0.4.0 go-module (+4 duplicates)
github.com/moby/sys/mount v0.3.4 go-module
github.com/moby/sys/mountinfo v0.7.2 go-module (+5 duplicates)
github.com/moby/sys/reexec v0.1.0 go-module
github.com/moby/sys/sequential v0.6.0 go-module (+2 duplicates)
github.com/moby/sys/signal v0.7.1 go-module (+4 duplicates)
github.com/moby/sys/symlink v0.3.0 go-module (+2 duplicates)
github.com/moby/sys/user v0.3.0 go-module
github.com/moby/sys/user v0.4.0 go-module (+4 duplicates)
github.com/moby/sys/userns v0.1.0 go-module (+6 duplicates)
github.com/moby/term v0.5.2 go-module (+2 duplicates)
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module (+1 duplicate)
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee go-module (+1 duplicate)
github.com/morikuni/aec v1.1.0 go-module (+1 duplicate)
github.com/mrunalp/fileutils v0.5.1 go-module
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 go-module (+2 duplicates)
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f go-module (+1 duplicate)
github.com/oklog/ulid/v2 v2.1.1 go-module (+1 duplicate)
github.com/open-policy-agent/opa v1.10.1 go-module
github.com/opencontainers/cgroups v0.0.4 go-module
github.com/opencontainers/cgroups v0.0.6 go-module
github.com/opencontainers/go-digest v1.0.0 go-module (+5 duplicates)
github.com/opencontainers/image-spec v1.1.1 go-module (+5 duplicates)
github.com/opencontainers/runc v1.3.5 go-module
github.com/opencontainers/runtime-spec v1.2.1 go-module
github.com/opencontainers/runtime-spec v1.3.0 go-module (+3 duplicates)
github.com/opencontainers/runtime-tools v0.9.1-0.20251114084447-edf4cb3d2116 go-module (+2 duplicates)
github.com/opencontainers/selinux v1.13.1 go-module (+3 duplicates)
github.com/package-url/packageurl-go v0.1.1 go-module (+1 duplicate)
github.com/pelletier/go-toml v1.9.5 go-module
github.com/pelletier/go-toml/v2 v2.2.4 go-module (+3 duplicates)
github.com/pelletier/go-toml/v2 v2.3.0 go-module
github.com/philhofer/fwd v1.2.0 go-module
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c go-module
github.com/pkg/errors v0.9.1 go-module (+2 duplicates)
github.com/pkg/term v1.1.0 go-module
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 go-module (+2 duplicates)
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 go-module
github.com/prometheus/client_golang v1.23.2 go-module (+2 duplicates)
github.com/prometheus/client_model v0.6.2 go-module (+2 duplicates)
github.com/prometheus/common v0.66.1 go-module (+2 duplicates)
github.com/prometheus/procfs v0.16.1 go-module
github.com/prometheus/procfs v0.17.0 go-module (+1 duplicate)
github.com/rcrowley/go-metrics v0.0.0-20250401214520-65e299d6c5c9 go-module
github.com/rivo/uniseg v0.4.7 go-module (+1 duplicate)
github.com/rootless-containers/rootlesskit/v2 v2.3.6 go-module
github.com/santhosh-tekuri/jsonschema/v6 v6.0.1 go-module (+1 duplicate)
github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 go-module
github.com/seccomp/libseccomp-golang v0.10.0 go-module
github.com/secure-systems-lab/go-securesystemslib v0.10.0 go-module (+2 duplicates)
github.com/serialx/hashring v0.0.0-20200727003509-22c0c7ab6b1b go-module
github.com/shibumi/go-pathspec v1.3.0 go-module (+2 duplicates)
github.com/sigstore/protobuf-specs v0.5.0 go-module (+1 duplicate)
github.com/sigstore/rekor v1.5.0 go-module (+1 duplicate)
github.com/sigstore/rekor-tiles/v2 v2.0.1 go-module (+1 duplicate)
github.com/sigstore/sigstore v1.10.4 go-module (+1 duplicate)
github.com/sigstore/sigstore v1.10.5 go-module
github.com/sigstore/sigstore-go v1.1.4 go-module (+2 duplicates)
github.com/sigstore/timestamp-authority/v2 v2.0.3 go-module
github.com/sigstore/timestamp-authority/v2 v2.0.6 go-module
github.com/sirupsen/logrus v1.9.3 go-module (+3 duplicates)
github.com/sirupsen/logrus v1.9.4 go-module (+3 duplicates)
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966 go-module
github.com/smallstep/pkcs7 v0.1.1 go-module
github.com/spdx/tools-golang v0.5.7 go-module
github.com/spf13/cobra v1.10.2 go-module (+2 duplicates)
github.com/spf13/pflag v1.0.10 go-module (+2 duplicates)
github.com/stefanberger/go-pkcs11uri v0.0.0-20230803200340-78284954bff6 go-module
github.com/stretchr/testify v1.11.1 go-module
github.com/tchap/go-patricia/v2 v2.3.3 go-module (+1 duplicate)
github.com/tetratelabs/wazero v1.10.1 go-module
github.com/tetratelabs/wazero v1.11.0 go-module
github.com/theupdateframework/go-tuf/v2 v2.4.1 go-module (+1 duplicate)
github.com/tilt-dev/fsnotify v1.4.8-0.20220602155310-fff9c274a375 go-module
github.com/tinylib/msgp v1.3.0 go-module
github.com/tonistiigi/dchapes-mode v0.0.0-20250318174251-73d941a28323 go-module (+2 duplicates)
github.com/tonistiigi/fsutil v0.0.0-20251211185533-a2aa163d723f go-module (+2 duplicates)
github.com/tonistiigi/go-actions-cache v0.0.0-20260120203934-54bc28c26fd2 go-module
github.com/tonistiigi/go-archvariant v1.0.0 go-module
github.com/tonistiigi/go-csvvalue v0.0.0-20240814133006-030d3b2625d0 go-module (+2 duplicates)
github.com/tonistiigi/jaeger-ui-rest v0.0.0-20250408171107-3dd17559e117 go-module
github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module (+2 duplicates)
github.com/tonistiigi/vt100 v0.0.0-20240514184818-90bafcd6abab go-module (+1 duplicate)
github.com/transparency-dev/formats v0.0.0-20251017110053-404c0d5b696c go-module (+1 duplicate)
github.com/transparency-dev/merkle v0.0.2 go-module (+1 duplicate)
github.com/urfave/cli v1.22.16 go-module
github.com/urfave/cli/v2 v2.27.7 go-module (+1 duplicate)
github.com/valyala/fastjson v1.6.4 go-module
github.com/vbatts/tar-split v0.12.2 go-module
github.com/vektah/gqlparser/v2 v2.5.30 go-module
github.com/vishvananda/netlink v1.3.0 go-module
github.com/vishvananda/netlink v1.3.1 go-module (+1 duplicate)
github.com/vishvananda/netns v0.0.4 go-module
github.com/vishvananda/netns v0.0.5 go-module (+1 duplicate)
github.com/weppos/publicsuffix-go v0.30.0 go-module
github.com/x448/float16 v0.8.4 go-module (+2 duplicates)
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb go-module
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 go-module
github.com/xhit/go-str2duration/v2 v2.1.0 go-module (+1 duplicate)
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 go-module (+1 duplicate)
github.com/yashtewari/glob-intersection v0.2.0 go-module
github.com/zclconf/go-cty v1.17.0 go-module
github.com/zmap/zcrypto v0.0.0-20230310154051-c8b263fd8300 go-module
github.com/zmap/zlint/v3 v3.5.0 go-module
glib-networking 2.80.1-1build2 deb
glib-networking-common 2.80.1-1build2 deb
glib-networking-services 2.80.1-1build2 deb
glycin-loaders 2.1.1+ds-0ubuntu1 deb
glycin-thumbnailers 2.1.1+ds-0ubuntu1 deb
gnu-coreutils 9.7-3ubuntu2 deb
gnupg 2.4.8-4ubuntu3 deb
gnupg-l10n 2.4.8-4ubuntu3 deb
gnupg-utils 2.4.8-4ubuntu3 deb
go.etcd.io/bbolt v1.4.3 go-module (+1 duplicate)
go.etcd.io/etcd/api/v3 v3.6.6 go-module
go.etcd.io/etcd/client/pkg/v3 v3.6.6 go-module
go.etcd.io/etcd/pkg/v3 v3.6.6 go-module
go.etcd.io/etcd/server/v3 v3.6.6 go-module
go.etcd.io/raft/v3 v3.6.0 go-module
go.opencensus.io v0.24.0 go-module
go.opentelemetry.io/auto/sdk v1.2.1 go-module (+4 duplicates)
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.60.0 go-module
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.63.0 go-module (+1 duplicate)
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.68.0 go-module
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.63.0 go-module (+1 duplicate)
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.68.0 go-module
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0 go-module (+1 duplicate)
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0 go-module (+1 duplicate)
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.68.0 go-module
go.opentelemetry.io/contrib/processors/baggagecopy v0.16.0 go-module
go.opentelemetry.io/otel v1.38.0 go-module (+1 duplicate)
go.opentelemetry.io/otel v1.40.0 go-module
go.opentelemetry.io/otel v1.42.0 go-module
go.opentelemetry.io/otel v1.43.0 go-module
go.opentelemetry.io/otel/bridge/opencensus v1.43.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.40.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.42.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.43.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.40.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.42.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.43.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.35.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.40.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.42.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.43.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.35.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.40.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.42.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.43.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.35.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.40.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.42.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.43.0 go-module
go.opentelemetry.io/otel/log v0.19.0 go-module
go.opentelemetry.io/otel/metric v1.38.0 go-module (+1 duplicate)
go.opentelemetry.io/otel/metric v1.40.0 go-module
go.opentelemetry.io/otel/metric v1.42.0 go-module
go.opentelemetry.io/otel/metric v1.43.0 go-module
go.opentelemetry.io/otel/sdk v1.38.0 go-module
go.opentelemetry.io/otel/sdk v1.40.0 go-module
go.opentelemetry.io/otel/sdk v1.42.0 go-module
go.opentelemetry.io/otel/sdk v1.43.0 go-module
go.opentelemetry.io/otel/sdk/log v0.19.0 go-module
go.opentelemetry.io/otel/sdk/metric v1.40.0 go-module
go.opentelemetry.io/otel/sdk/metric v1.42.0 go-module
go.opentelemetry.io/otel/sdk/metric v1.43.0 go-module
go.opentelemetry.io/otel/trace v1.38.0 go-module (+1 duplicate)
go.opentelemetry.io/otel/trace v1.40.0 go-module
go.opentelemetry.io/otel/trace v1.42.0 go-module
go.opentelemetry.io/otel/trace v1.43.0 go-module
go.opentelemetry.io/proto/otlp v1.10.0 go-module
go.opentelemetry.io/proto/otlp v1.5.0 go-module
go.opentelemetry.io/proto/otlp v1.9.0 go-module (+1 duplicate)
go.uber.org/mock v0.6.0 go-module
go.uber.org/multierr v1.11.0 go-module
go.uber.org/zap v1.27.1 go-module
go.yaml.in/yaml/v2 v2.4.2 go-module (+1 duplicate)
go.yaml.in/yaml/v2 v2.4.3 go-module (+1 duplicate)
go.yaml.in/yaml/v3 v3.0.4 go-module (+1 duplicate)
go.yaml.in/yaml/v4 v4.0.0-rc.4 go-module
golang.org/x/crypto v0.45.0 go-module
golang.org/x/crypto v0.48.0 go-module (+1 duplicate)
golang.org/x/crypto v0.50.0 go-module
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f go-module (+2 duplicates)
golang.org/x/mod v0.29.0 go-module (+1 duplicate)
golang.org/x/mod v0.33.0 go-module
golang.org/x/mod v0.34.0 go-module
golang.org/x/net v0.35.0 go-module
golang.org/x/net v0.40.0 go-module
golang.org/x/net v0.47.0 go-module (+2 duplicates)
golang.org/x/net v0.51.0 go-module (+1 duplicate)
golang.org/x/net v0.53.0 go-module (+1 duplicate)
golang.org/x/oauth2 v0.32.0 go-module
golang.org/x/oauth2 v0.34.0 go-module
golang.org/x/oauth2 v0.36.0 go-module
golang.org/x/sync v0.18.0 go-module (+2 duplicates)
golang.org/x/sync v0.19.0 go-module
golang.org/x/sync v0.20.0 go-module (+1 duplicate)
golang.org/x/sys v0.30.0 go-module
golang.org/x/sys v0.33.0 go-module
golang.org/x/sys v0.38.0 go-module (+2 duplicates)
golang.org/x/sys v0.42.0 go-module (+1 duplicate)
golang.org/x/sys v0.43.0 go-module (+1 duplicate)
golang.org/x/term v0.32.0 go-module
golang.org/x/term v0.37.0 go-module
golang.org/x/term v0.41.0 go-module (+1 duplicate)
golang.org/x/term v0.42.0 go-module
golang.org/x/text v0.31.0 go-module (+1 duplicate)
golang.org/x/text v0.34.0 go-module (+1 duplicate)
golang.org/x/text v0.36.0 go-module
golang.org/x/time v0.14.0 go-module (+2 duplicates)
golang.org/x/time v0.15.0 go-module
google-crc32c 1.8.0 python
google.golang.org/api v0.272.0 go-module
google.golang.org/genproto v0.0.0-20260401024825-9d38bb4040a9 go-module
google.golang.org/genproto/googleapis/api v0.0.0-20251029180050-ab9386a59fda go-module
google.golang.org/genproto/googleapis/api v0.0.0-20260128011058-8636f8732409 go-module
google.golang.org/genproto/googleapis/api v0.0.0-20260209200024-4cfbd4190f57 go-module
google.golang.org/genproto/googleapis/api v0.0.0-20260401024825-9d38bb4040a9 go-module
google.golang.org/genproto/googleapis/rpc v0.0.0-20251029180050-ab9386a59fda go-module (+2 duplicates)
google.golang.org/genproto/googleapis/rpc v0.0.0-20260128011058-8636f8732409 go-module
google.golang.org/genproto/googleapis/rpc v0.0.0-20260209200024-4cfbd4190f57 go-module
google.golang.org/genproto/googleapis/rpc v0.0.0-20260406210006-6f92a3bedf2d go-module
google.golang.org/grpc v1.78.0 go-module (+2 duplicates)
google.golang.org/grpc v1.79.3 go-module
google.golang.org/grpc v1.80.0 go-module (+1 duplicate)
google.golang.org/protobuf v1.36.10 go-module (+2 duplicates)
google.golang.org/protobuf v1.36.11 go-module (+2 duplicates)
google.golang.org/protobuf v1.36.5 go-module
gopkg.in/inf.v0 v0.9.1 go-module (+2 duplicates)
gopkg.in/ini.v1 v1.67.0 go-module
gopkg.in/tomb.v2 v2.0.0-20161208151619-d5d1b5820637 go-module
gopkg.in/yaml.v2 v2.4.0 go-module
gopkg.in/yaml.v3 v3.0.1 go-module (+5 duplicates)
gotest.tools/v3 v3.5.2 go-module
gpg 2.4.8-4ubuntu3 deb
gpg-agent 2.4.8-4ubuntu3 deb
gpg-wks-client 2.4.8-4ubuntu3 deb
gpgconf 2.4.8-4ubuntu3 deb
gpgsm 2.4.8-4ubuntu3 deb
gpgv 2.4.8-4ubuntu3 deb
gputil 1.4.0 python
grep 3.12-1 deb
groff-base 1.23.0-10 deb
gsettings-desktop-schemas 50.0-1ubuntu2 deb
gtk-update-icon-cache 4.22.2+ds-1ubuntu1 deb
gzip 1.14-1~exp2ubuntu1 deb
hicolor-icon-theme 0.18-2build1 deb
hostname 3.25build1 deb
httplib2 0.22.0 python
idna 3.13 python
ifaddr 0.2.0 python
importlib-metadata 8.0.0 python
inflect 7.3.1 python
inflect 7.5.0 python
init-system-helpers 1.69 deb
intel-media-va-driver 26.1.2+dfsg1-1 deb
iptables 1.8.11-2ubuntu3 deb
iso-codes 4.20.1-1 deb
jaraco-collections 5.1.0 python
jaraco-context 5.3.0 python
jaraco-context 6.0.1 python
jaraco-functools 4.0.1 python
jaraco-functools 4.1.0 python
jaraco-text 3.12.1 python
jaraco-text 4.0.0 python
jq 1.8.1-4ubuntu1 deb
k8s.io/api v0.34.1 go-module
k8s.io/api v0.35.2 go-module
k8s.io/apimachinery v0.34.1 go-module (+1 duplicate)
k8s.io/apimachinery v0.35.2 go-module
k8s.io/client-go v0.34.1 go-module
k8s.io/client-go v0.35.2 go-module
k8s.io/cri-api v0.34.1 go-module
k8s.io/klog/v2 v2.130.1 go-module (+1 duplicate)
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 go-module
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397 go-module
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 go-module
kbd 2.7.1-2ubuntu2 deb
keyboard-configuration 1.237ubuntu3 deb
krb5-locales 1.22.1-2ubuntu4 deb
labwc 0.9.3-1 deb
launchpadlib 2.1.0 python
lazr-restfulclient 0.14.6 python
lazr-uri 1.0.6 python
libabsl20260107 20260107.0-4 deb
libacl1 2.3.2-2 deb
libaom3 3.13.1-2 deb
libapparmor1 5.0.0~beta1-0ubuntu7 deb
libappstream5 1.1.2-1 deb
libapt-pkg7.0 3.2.0 deb
libarchive13t64 3.8.5-1ubuntu2 deb
libasan8 16-20260322-1ubuntu1 deb
libasound2-data 1.2.15.3-1ubuntu1 deb
libasound2-plugins 1.2.12-2build1 deb
libasound2t64 1.2.15.3-1ubuntu1 deb
libassuan9 3.0.2-2build1 deb
libasyncns0 0.8-7 deb
libatk-bridge2.0-0t64 2.60.0-1 deb
libatk1.0-0t64 2.60.0-1 deb
libatomic1 16-20260322-1ubuntu1 deb
libatspi2.0-0t64 2.60.0-1 deb
libattr1 1:2.5.2-4 deb
libaudit-common 1:4.1.2-1build1 deb
libaudit1 1:4.1.2-1build1 deb
libavahi-client3 0.8-18ubuntu1 deb
libavahi-common-data 0.8-18ubuntu1 deb
libavahi-common3 0.8-18ubuntu1 deb
libavcodec62 7:8.0.1-3ubuntu2 deb
libavutil60 7:8.0.1-3ubuntu2 deb
libbinutils 2.46-3ubuntu2 deb
libblkid1 2.41.3-3ubuntu2 deb
libbrotli1 1.2.0-3build1 deb
libbsd0 0.12.2-2build2 deb
libbz2-1.0 1.0.8-6build2 deb
libc-bin 2.43-2ubuntu2 deb
libc-dev-bin 2.43-2ubuntu2 deb
libc-gconv-modules-extra 2.43-2ubuntu2 deb
libc6 2.43-2ubuntu2 deb
libc6-dev 2.43-2ubuntu2 deb
libcairo-gobject2 1.18.4-3 deb
libcairo2 1.18.4-3 deb
libcap-ng0 0.8.5-4build5 deb
libcap2 1:2.75-10ubuntu2 deb
libcap2-bin 1:2.75-10ubuntu2 deb
libcbor0.10 0.10.2-2ubuntu3 deb
libcc1-0 16-20260322-1ubuntu1 deb
libcodec2-1.2 1.2.0-4 deb
libcolord2 1.4.8-3 deb
libcom-err2 1.47.2-3ubuntu4 deb
libcrypt1 1:4.5.1-1 deb
libctf-nobfd0 2.46-3ubuntu2 deb
libctf0 2.46-3ubuntu2 deb
libcups2t64 2.4.16-1ubuntu1 deb
libcurl3t64-gnutls 8.18.0-1ubuntu2 deb
libcurl4t64 8.18.0-1ubuntu2 deb
libdatrie1 0.2.14-1 deb
libdav1d7 1.5.3-1 deb
libdb5.3t64 5.3.28+dfsg2-10ubuntu1 deb
libdbus-1-3 1.16.2-2ubuntu4 deb
libdconf1 0.49.0-4 deb
libdebconfclient0 0.280ubuntu1 deb
libdecor-0-0 0.2.5-1 deb
libdeflate0 1.23-2ubuntu1 deb
libdisplay-info3 0.3.0-1 deb
libdrm-amdgpu1 2.4.131-1 deb
libdrm-common 2.4.131-1 deb
libdrm-intel1 2.4.131-1 deb
libdrm-nouveau2 2.4.131-1 deb
libdrm-radeon1 2.4.131-1 deb
libdrm2 2.4.131-1 deb
libduktape207 2.7.0+tests-0ubuntu4 deb
libedit2 3.1-20251016-1 deb
libegl-mesa0 26.0.3-1ubuntu1 deb
libegl1 1.7.0-3 deb
libei1 1.5.0-3 deb
libelf1t64 0.194-4 deb
libepoxy0 1.5.10-2build1 deb
liberror-perl 0.17030-1 deb
libev4t64 1:4.33-2.1build2 deb
libevdev2 1.13.6+dfsg-1 deb
libexpat1 2.7.4-1 deb
libext2fs2t64 1.47.2-3ubuntu4 deb
libfcft4t64 3.3.2-1 deb
libffi8 3.5.2-4 deb
libfftw3-single3 3.3.10-2fakesync1build3 deb
libfido2-1 1.16.0-2build1 deb
libflac14 1.5.0+ds-5 deb
libfontconfig1 2.17.1-3ubuntu1 deb
libfontenc1 1:1.1.8-1build2 deb
libfreetype6 2.14.2+dfsg-1 deb
libfribidi0 1.0.16-5 deb
libfuse3-4 3.18.2-1 deb
libfyaml0 0.9.4-1 deb
libgbm1 26.0.3-1ubuntu1 deb
libgcc-15-dev 15.2.0-16ubuntu1 deb
libgcc-s1 16-20260322-1ubuntu1 deb
libgcrypt20 1.12.0-2 deb
libgdbm-compat4t64 1.26-1build1 deb
libgdbm6t64 1.26-1build1 deb
libgdk-pixbuf-2.0-0 2.44.5+dfsg-4ubuntu1 deb
libgdk-pixbuf2.0-common 2.44.5+dfsg-4ubuntu1 deb
libgif7 5.2.2-1ubuntu3 deb
libgirepository-1.0-1 1.86.0-6build1 deb
libgirepository-2.0-0 2.88.0-1 deb
libgl1 1.7.0-3 deb
libgl1-mesa-dri 26.0.3-1ubuntu1 deb
libgles2 1.7.0-3 deb
libglib2.0-0t64 2.88.0-1 deb
libglib2.0-bin 2.88.0-1 deb
libglib2.0-data 2.88.0-1 deb
libglu1-mesa 9.0.2-1.1build2 deb
libglvnd0 1.7.0-3 deb
libglx-mesa0 26.0.3-1ubuntu1 deb
libglx0 1.7.0-3 deb
libglycin-2-0 2.1.1+ds-0ubuntu1 deb
libgmp10 2:6.3.0+dfsg-5ubuntu2 deb
libgnutls30t64 3.8.12-2ubuntu1 deb
libgomp1 16-20260322-1ubuntu1 deb
libgpg-error0 1.58-2 deb
libgprofng0 2.46-3ubuntu2 deb
libgraphite2-3 1.3.14-11ubuntu1 deb
libgs-common 10.06.0~dfsg-3ubuntu1 deb
libgs10 10.06.0~dfsg-3ubuntu1 deb
libgs10-common 10.06.0~dfsg-3ubuntu1 deb
libgsm1 1.0.23-2 deb
libgssapi-krb5-2 1.22.1-2ubuntu4 deb
libgstreamer-plugins-base1.0-0 1.28.2-1 deb
libgstreamer1.0-0 1.28.2-1 deb
libgtk-3-0t64 3.24.52-0ubuntu1 deb
libgtk-3-common 3.24.52-0ubuntu1 deb
libgudev-1.0-0 1:238-7build1 deb
libharfbuzz0b 12.3.2-2 deb
libheif-plugin-aomdec 1.21.2-3 deb
libheif1 1.21.2-3 deb
libhogweed6t64 3.10.2-1 deb
libhwasan0 16-20260322-1ubuntu1 deb
libhwy1t64 1.3.0-2 deb
libice6 2:1.1.1-1build1 deb
libid3tag0 0.16.3-4 deb
libidn12 1.43-2build1 deb
libidn2-0 2.3.8-4build1 deb
libigdgmm12 22.9.0+ds1-1 deb
libijs-0.35 0.35-16 deb
libimlib2t64 1.12.6-1 deb
libinput-bin 1.31.1-1 deb
libinput10 1.31.1-1 deb
libip4tc2 1.8.11-2ubuntu3 deb
libip6tc2 1.8.11-2ubuntu3 deb
libisl23 0.27-1build1 deb
libitm1 16-20260322-1ubuntu1 deb
libjack-jackd2-0 1.9.22~dfsg-5build1 deb
libjansson4 2.14-2build4 deb
libjbig0 2.1-6.1ubuntu3 deb
libjbig2dec0 0.20-1build4 deb
libjpeg-turbo8 2.1.5-4ubuntu4 deb
libjpeg8 8c-2ubuntu12 deb
libjq1 1.8.1-4ubuntu1 deb
libjson-glib-1.0-0 1.10.8+ds-2 deb
libjson-glib-1.0-common 1.10.8+ds-2 deb
libjsoncpp26 1.9.6-5 deb
libjxl0.11 0.11.1-6ubuntu4 deb
libk5crypto3 1.22.1-2ubuntu4 deb
libkeyutils1 1.6.3-6ubuntu3 deb
libkmod2 34.2-2ubuntu2 deb
libkrb5-3 1.22.1-2ubuntu4 deb
libkrb5support0 1.22.1-2ubuntu4 deb
libksba8 1.6.7-2build1 deb
liblcms2-2 2.17-1ubuntu0.1 deb
libldap-common 2.6.10+dfsg-1ubuntu5 deb
libldap2 2.6.10+dfsg-1ubuntu5 deb
liblerc4 4.0.0+ds-5ubuntu2 deb
libliftoff0 0.5.0-1.1build1 deb
libllvm21 1:21.1.8-6ubuntu1 deb
liblocale-gettext-perl 1.07-8 deb
liblsan0 16-20260322-1ubuntu1 deb
libltdl7 2.5.4-9 deb
liblz4-1 1.10.0-8 deb
liblzma5 5.8.3-1 deb
libmagic-mgc 1:5.46-5build2 deb
libmagic1t64 1:5.46-5build2 deb
libmd0 1.1.0-2build4 deb
libmnl0 1.0.5-3build1 deb
libmount1 2.41.3-3ubuntu2 deb
libmp3lame0 3.101~svn6525+dfsg-2 deb
libmpc3 1.3.1-3 deb
libmpfr6 4.2.2-3 deb
libmpg123-0t64 1.33.3-2 deb
libmtdev1t64 1.1.7-1build1 deb
libncursesw6 6.6+20251231-1 deb
libnetfilter-conntrack3 1.1.1-1 deb
libnettle8t64 3.10.2-1 deb
libnfnetlink0 1.0.2-3build1 deb
libnftables1 1.1.6-1 deb
libnftnl11 1.3.1-1 deb
libnghttp2-14 1.68.0-2 deb
libnginx-mod-http-fancyindex 1:0.5.2-7build3 deb
libnotify-bin 0.8.8-1 deb
libnotify4 0.8.8-1 deb
libnpth0t64 1.8-3build1 deb
libnspr4 2:4.38.2-1ubuntu1 deb
libnss3 2:3.120-1ubuntu2 deb
libnuma1 2.0.19-1build1 deb
libnvidia-egl-wayland1 1:1.1.21-1 deb
libobrender32 3.6.1-12ubuntu3 deb
libobt2 3.6.1-12ubuntu3 deb
liboeffis1 1.5.0-3 deb
libogg0 1.3.6-2 deb
libonig5 6.9.10-1build1 deb
libopengl0 1.7.0-3 deb
libopenjp2-7 2.5.4-1 deb
libopus0 1.6.1-1 deb
liborc-0.4-0t64 1:0.4.42-2 deb
libp11-kit0 0.26.2-2 deb
libpackagekit-glib2-18 1.3.4-3ubuntu1 deb
libpam-modules 1.7.0-5ubuntu3 deb
libpam-modules-bin 1.7.0-5ubuntu3 deb
libpam-runtime 1.7.0-5ubuntu3 deb
libpam-systemd 259.5-0ubuntu3 deb
libpam0g 1.7.0-5ubuntu3 deb
libpango-1.0-0 1.57.0-1 deb
libpangocairo-1.0-0 1.57.0-1 deb
libpangoft2-1.0-0 1.57.0-1 deb
libpangoxft-1.0-0 1.57.0-1 deb
libpaper2 2.2.5-0.3maysync1 deb
libpci3 1:3.14.0-1build2 deb
libpciaccess0 0.18.1-1ubuntu4 deb
libpcre2-8-0 10.46-1build1 deb
libperl5.40 5.40.1-7build1 deb
libpipeline1 1.5.8-2 deb
libpixman-1-0 0.46.4-1 deb
libpng16-16t64 1.6.57-1 deb
libpolkit-agent-1-0 127-2ubuntu1 deb
libpolkit-gobject-1-0 127-2ubuntu1 deb
libproc2-0 2:4.0.4-9ubuntu1 deb
libproxy1v5 0.5.12-1 deb
libpsl5t64 0.21.2-1.1build2 deb
libpulse0 1:17.0+dfsg1-2ubuntu4 deb
libpulsedsp 1:17.0+dfsg1-2ubuntu4 deb
libpython3-stdlib 3.14.3-0ubuntu2 deb
libpython3.14-minimal 3.14.4-1 deb
libpython3.14-stdlib 3.14.4-1 deb
libquadmath0 16-20260322-1ubuntu1 deb
librav1e0.8 0.8.1-7 deb
libreadline8t64 8.3-4 deb
librhash1 1.4.6-1.1 deb
librsvg2-2 2.61.3+dfsg-3 deb
librtmp1 2.4+20151223.gitfa8646d.1-3 deb
libsamplerate0 0.2.2-4build2 deb
libsasl2-2 2.1.28+dfsg1-9ubuntu3 deb
libsasl2-modules 2.1.28+dfsg1-9ubuntu3 deb
libsasl2-modules-db 2.1.28+dfsg1-9ubuntu3 deb