forked from gagedevs/DesktopOnCodespaces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package_versions.txt
executable file
·1798 lines (1798 loc) · 232 KB
/
package_versions.txt
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
1to2 1.0.0 npm
@colors/colors 1.5.0 npm
@gar/promisify 1.1.3 npm
@isaacs/cliui 8.0.2 npm
@isaacs/string-locale-compare 1.1.0 npm
@kasmtech/novnc 1.3.0 npm
@npmcli/arborist 6.2.9 npm
@npmcli/config 6.1.7 npm
@npmcli/disparity-colors 3.0.0 npm
@npmcli/fs 2.1.2 npm
@npmcli/fs 3.1.0 npm
@npmcli/git 4.0.4 npm
@npmcli/installed-package-contents 2.0.2 npm
@npmcli/map-workspaces 3.0.4 npm
@npmcli/metavuln-calculator 5.0.1 npm
@npmcli/move-file 2.0.1 npm
@npmcli/name-from-folder 2.0.0 npm
@npmcli/node-gyp 3.0.0 npm
@npmcli/package-json 3.1.0 npm
@npmcli/promise-spawn 6.0.2 npm
@npmcli/query 3.0.0 npm
@npmcli/run-script 6.0.2 npm
@pkgjs/parseargs 0.11.0 npm
@sigstore/protobuf-specs 0.1.0 npm
@socket.io/component-emitter 3.1.0 npm
@tootallnate/once 2.0.0 npm
@tufjs/canonical-json 1.0.0 npm
@tufjs/models 1.0.4 npm
@types/cookie 0.4.1 npm
@types/cors 2.8.15 npm
@types/node 20.8.9 npm
PyGObject 3.42.1 python
PyJWT 2.3.0 python
SecretStorage 3.3.1 python
abbrev 1.1.1 npm
abbrev 2.0.0 npm
abort-controller 3.0.0 npm
accepts 1.3.8 npm
accountsservice 22.07.5-2ubuntu1.4 deb
adduser 3.118ubuntu5 deb
adwaita-icon-theme 41.0-1ubuntu1 deb
agent-base 6.0.2 npm
agentkeepalive 4.3.0 npm
aggregate-error 3.1.0 npm
ansi-regex 5.0.1 npm
ansi-regex 6.0.1 npm
ansi-styles 4.3.0 npm
ansi-styles 6.2.1 npm
aproba 2.0.0 npm
apt 2.4.10 deb
apt-utils 2.4.10 deb
archy 1.0.0 npm
are-we-there-yet 3.0.1 npm
are-we-there-yet 4.0.0 npm
array-flatten 1.1.1 npm
async 3.2.4 npm
balanced-match 1.0.2 npm
baloo-kf5 5.92.0-0ubuntu1 deb
base-files 12ubuntu4.3 deb
base-passwd 3.5.52build1 deb
base64-js 1.5.1 npm
base64id 2.0.0 npm
bash 5.1-6ubuntu1 deb
bash 5.1.16 binary
bc 1.07.1-3build1 deb
bin-links 4.0.1 npm
binary-extensions 2.2.0 npm
bindings 1.5.0 npm
blinker 1.4 python
body-parser 1.20.1 npm
brace-expansion 1.1.11 npm
brace-expansion 2.0.1 npm
breeze 4:5.24.7-0ubuntu0.1 deb
breeze-cursor-theme 4:5.24.7-0ubuntu0.1 deb
breeze-icon-theme 4:5.92.0-0ubuntu1 deb
bsdextrautils 2.37.2-4ubuntu3 deb
bsdutils 1:2.37.2-4ubuntu3 deb
buffer 6.0.3 npm
builtins 5.0.1 npm
bytes 3.1.2 npm
ca-certificates 20230311ubuntu0.22.04.1 deb
cacache 16.1.3 npm
cacache 17.1.2 npm
call-bind 1.0.5 npm
catdoc 1:0.95-5 deb
chalk 4.1.2 npm
chownr 2.0.0 npm
ci-info 3.8.0 npm
cidr-regex 3.1.1 npm
clean-stack 2.2.0 npm
cli-columns 4.0.0 npm
cli-table3 0.6.3 npm
clone 1.0.4 npm
cloud.google.com/go v0.102.1 go-module
cloud.google.com/go/compute v1.7.0 go-module
cloud.google.com/go/logging v1.4.2 go-module
cmd-shim 6.0.1 npm
code.cloudfoundry.org/clock v1.0.0 go-module
color-convert 2.0.1 npm
color-name 1.1.4 npm
color-support 1.1.3 npm
columnify 1.6.0 npm
common-ancestor-path 1.0.1 npm
concat-map 0.0.1 npm
console-control-strings 1.1.0 npm
containerd.io 1.6.24-1 deb
content-disposition 0.5.4 npm
content-type 1.0.5 npm
cookie 0.4.2 npm
cookie 0.5.0 npm
cookie-signature 1.0.6 npm
corepack 0.18.0 npm
coreutils 8.32-4.1ubuntu1 deb
cors 2.8.5 npm
cpp 4:11.2.0-1ubuntu1 deb
cpp-11 11.4.0-1ubuntu1~22.04 deb
cross-spawn 7.0.3 npm
cryptography 3.4.8 python
cssesc 3.0.0 npm
cups 2.4.1op1-1ubuntu4.7 deb
cups-client 2.4.1op1-1ubuntu4.7 deb
cups-common 2.4.1op1-1ubuntu4.7 deb
cups-core-drivers 2.4.1op1-1ubuntu4.7 deb
cups-daemon 2.4.1op1-1ubuntu4.7 deb
cups-filters 1.28.15-0ubuntu1.2 deb
cups-filters-core-drivers 1.28.15-0ubuntu1.2 deb
cups-ipp-utils 2.4.1op1-1ubuntu4.7 deb
cups-ppdc 2.4.1op1-1ubuntu4.7 deb
cups-server-common 2.4.1op1-1ubuntu4.7 deb
curl 7.81.0-1ubuntu1.14 deb
dash 0.5.11+git20210903+057cd650a4ed-3build1 deb
dbus 1.12.20-2ubuntu4.1 deb
dbus-python 1.2.18 python
dbus-x11 1.12.20-2ubuntu4.1 deb
dconf-gsettings-backend 0.40.0-3 deb
dconf-service 0.40.0-3 deb
debconf 1.5.79ubuntu1 deb
debianutils 5.5-1ubuntu2 deb
debug 2.6.9 npm
debug 4.3.4 npm
defaults 1.0.4 npm
define-data-property 1.1.1 npm
delegates 1.0.0 npm
depd 2.0.0 npm
destroy 1.2.0 npm
diff 5.1.0 npm
diffutils 1:3.8-0ubuntu2 deb
dirmngr 2.2.27-3ubuntu2.1 deb
distro 1.7.0 python
distro-info-data 0.52ubuntu0.5 deb
dmidecode 3.3-3ubuntu0.1 deb
docker-ce 5:24.0.7-1~ubuntu.22.04~jammy deb
docker-ce-cli 5:24.0.7-1~ubuntu.22.04~jammy deb
docker-compose-plugin 2.21.0-1~ubuntu.22.04~jammy deb
dolphin 4:21.12.3-0ubuntu1 deb
dpkg 1.21.1ubuntu2.2 deb
drkonqi 5.24.5-0ubuntu0.1 deb
e2fsprogs 1.46.5-2ubuntu1.1 deb
eastasianwidth 0.2.0 npm
ee-first 1.1.1 npm
ejs 3.1.9 npm
emoji-regex 8.0.0 npm
emoji-regex 9.2.2 npm
encodeurl 1.0.2 npm
encoding 0.1.13 npm
engine.io 6.5.3 npm
engine.io-parser 5.2.1 npm
env-paths 2.2.1 npm
err-code 2.0.3 npm
escape-html 1.0.3 npm
etag 1.8.1 npm
event-target-shim 5.0.1 npm
events 3.3.0 npm
express 4.18.2 npm
fastest-levenshtein 1.0.16 npm
fdisk 2.37.2-4ubuntu3 deb
ffmpeg 7:4.4.2-0ubuntu0.22.04.1 deb
file 1:5.41-3ubuntu0.1 deb
file-uri-to-path 1.0.0 npm
filelist 1.0.4 npm
finalhandler 1.2.0 npm
findutils 4.8.0-1ubuntu3 deb
firefox 119.0+build2-0ubuntu0.22.04.1~mt1 deb
fontconfig 2.13.1-4.2ubuntu5 deb
fontconfig-config 2.13.1-4.2ubuntu5 deb
fonts-dejavu-core 2.37-2build1 deb
fonts-urw-base35 20200910-1 deb
foreground-child 3.1.1 npm
forwarded 0.2.0 npm
frameworkintegration 5.92.0-0ubuntu1 deb
fresh 0.5.2 npm
fs-minipass 2.1.0 npm
fs-minipass 3.0.2 npm
fs.realpath 1.0.0 npm
function-bind 1.1.1 npm
function-bind 1.1.2 npm
fuse-overlayfs 1.7.1-1 deb
fuse3 3.10.5-1build1 deb
gamin 0.1.10-6 deb
gauge 4.0.4 npm
gauge 5.0.1 npm
gcc-11-base 11.4.0-1ubuntu1~22.04 deb
gcc-12-base 12.3.0-1ubuntu1~22.04 deb
gdb 12.1-0ubuntu1~22.04 deb
gdisk 1.0.8-4build1 deb
get-intrinsic 1.2.2 npm
ghostscript 9.55.0~dfsg1-0ubuntu5.5 deb
gir1.2-glib-2.0 1.72.0-1 deb
gir1.2-packagekitglib-1.0 1.2.5-2ubuntu2 deb
github.com/AlecAivazis/survey/v2 v2.3.7 go-module
github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module
github.com/Masterminds/semver/v3 v3.2.1 go-module
github.com/Microsoft/hcsshim v0.9.10 go-module
github.com/Microsoft/hcsshim v0.9.8 go-module
github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module
github.com/adrg/xdg v0.4.0 go-module
github.com/agext/levenshtein v1.2.3 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/aws/aws-sdk-go-v2 v1.16.13 go-module
github.com/aws/aws-sdk-go-v2 v1.17.6 go-module
github.com/aws/aws-sdk-go-v2/config v1.17.4 go-module
github.com/aws/aws-sdk-go-v2/config v1.18.16 go-module
github.com/aws/aws-sdk-go-v2/credentials v1.12.17 go-module
github.com/aws/aws-sdk-go-v2/credentials v1.13.16 go-module
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.14 go-module
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.24 go-module
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.20 go-module
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.30 go-module
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.14 go-module
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.24 go-module
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.21 go-module
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.31 go-module
github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.15.17 go-module
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.14 go-module
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.24 go-module
github.com/aws/aws-sdk-go-v2/service/sso v1.11.20 go-module
github.com/aws/aws-sdk-go-v2/service/sso v1.12.5 go-module
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.13.2 go-module
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.5 go-module
github.com/aws/aws-sdk-go-v2/service/sts v1.16.16 go-module
github.com/aws/aws-sdk-go-v2/service/sts v1.18.6 go-module
github.com/aws/smithy-go v1.13.1 go-module
github.com/aws/smithy-go v1.13.5 go-module
github.com/beorn7/perks v1.0.1 go-module
github.com/blang/semver v3.5.1+incompatible go-module
github.com/bsphere/le_go v0.0.0-20200109081728-fc06dab2caa8 go-module
github.com/buger/goterm v1.0.4 go-module
github.com/cenkalti/backoff/v4 v4.1.2 go-module
github.com/cenkalti/backoff/v4 v4.2.0 go-module
github.com/cespare/xxhash/v2 v2.1.2 go-module
github.com/cespare/xxhash/v2 v2.2.0 go-module
github.com/checkpoint-restore/go-criu/v5 v5.3.0 go-module
github.com/cilium/ebpf v0.7.0 go-module
github.com/cilium/ebpf v0.9.1 go-module
github.com/cloudflare/cfssl v0.0.0-20180323000720-5d63dbd981b5 go-module
github.com/compose-spec/compose-go v1.18.3 go-module
github.com/container-storage-interface/spec v1.5.0 go-module
github.com/containerd/aufs v1.0.0 go-module
github.com/containerd/btrfs v1.0.0 go-module
github.com/containerd/cgroups v1.0.4 go-module
github.com/containerd/cgroups/v3 v3.0.2 go-module
github.com/containerd/console v1.0.3 go-module
github.com/containerd/containerd v1.6.22 go-module
github.com/containerd/containerd v1.6.24 go-module
github.com/containerd/containerd v1.7.3 go-module
github.com/containerd/continuity v0.3.0 go-module
github.com/containerd/continuity v0.4.1 go-module
github.com/containerd/fifo v1.0.0 go-module
github.com/containerd/fifo v1.1.0 go-module
github.com/containerd/go-cni v1.1.6 go-module
github.com/containerd/go-runc v1.0.0 go-module
github.com/containerd/go-runc v1.1.0 go-module
github.com/containerd/imgcrypt v1.1.4 go-module
github.com/containerd/nri v0.1.0 go-module
github.com/containerd/stargz-snapshotter/estargz v0.13.0 go-module
github.com/containerd/ttrpc v1.1.2 go-module
github.com/containerd/typeurl v1.0.2 go-module
github.com/containerd/typeurl/v2 v2.1.0 go-module
github.com/containerd/typeurl/v2 v2.1.1 go-module
github.com/containerd/zfs v1.1.0 go-module
github.com/containernetworking/cni v1.1.1 go-module
github.com/containernetworking/plugins v1.1.1 go-module
github.com/containers/ocicrypt v1.1.3 go-module
github.com/coreos/go-systemd/v22 v22.3.2 go-module
github.com/coreos/go-systemd/v22 v22.5.0 go-module
github.com/cpuguy83/go-md2man/v2 v2.0.0 go-module
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d go-module
github.com/cyphar/filepath-securejoin v0.2.3 go-module
github.com/davecgh/go-spew v1.1.1 go-module
github.com/deckarep/golang-set/v2 v2.3.0 go-module
github.com/dimchansky/utfbom v1.1.1 go-module
github.com/distribution/distribution/v3 v3.0.0-20230601133803-97b1d649c493 go-module
github.com/docker/buildx v0.11.2 go-module
github.com/docker/cli v24.0.5+incompatible go-module
github.com/docker/cli/cmd/docker v24.0.7 go-module
github.com/docker/compose/v2 (devel) go-module
github.com/docker/distribution v2.8.2+incompatible go-module
github.com/docker/docker v24.0.5+incompatible go-module
github.com/docker/docker v24.0.7 go-module
github.com/docker/docker-credential-helpers v0.7.0 go-module
github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module
github.com/docker/go-connections v0.4.0 go-module
github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c go-module
github.com/docker/go-metrics v0.0.1 go-module
github.com/docker/go-units v0.4.0 go-module
github.com/docker/go-units v0.5.0 go-module
github.com/docker/libkv v0.2.2-0.20211217103745-e480589147e3 go-module
github.com/docker/libtrust v0.0.0-20150526203908-9cbd2a1374f4 go-module
github.com/dustin/go-humanize v1.0.0 go-module
github.com/emicklei/go-restful v2.9.5+incompatible go-module
github.com/emicklei/go-restful/v3 v3.10.1 go-module
github.com/felixge/httpsnoop v1.0.2 go-module
github.com/felixge/httpsnoop v1.0.3 go-module
github.com/fernet/fernet-go v0.0.0-20211208181803-9f70042a33ee go-module
github.com/fluent/fluent-logger-golang v1.9.0 go-module
github.com/fsnotify/fsnotify v1.4.9 go-module
github.com/fvbommel/sortorder v1.0.2 go-module
github.com/go-logr/logr v1.2.2 go-module
github.com/go-logr/logr v1.2.3 go-module
github.com/go-logr/logr v1.2.4 go-module
github.com/go-logr/stdr v1.2.2 go-module
github.com/go-openapi/jsonpointer v0.19.5 go-module
github.com/go-openapi/jsonreference v0.20.0 go-module
github.com/go-openapi/swag v0.19.14 go-module
github.com/godbus/dbus/v5 v5.0.6 go-module
github.com/godbus/dbus/v5 v5.1.0 go-module
github.com/gofrs/flock v0.8.1 go-module
github.com/gogo/googleapis v1.3.2 go-module
github.com/gogo/googleapis v1.4.1 go-module
github.com/gogo/protobuf v1.3.2 go-module
github.com/golang-jwt/jwt/v4 v4.4.2 go-module
github.com/golang/gddo v0.0.0-20190904175337-72a348e765d2 go-module
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da go-module
github.com/golang/mock v1.6.0 go-module
github.com/golang/protobuf v1.5.2 go-module
github.com/golang/protobuf v1.5.3 go-module
github.com/google/btree v1.1.2 go-module
github.com/google/certificate-transparency-go v1.1.4 go-module
github.com/google/gnostic v0.5.7-v3refs go-module
github.com/google/go-cmp v0.5.9 go-module
github.com/google/gofuzz v1.2.0 go-module
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module
github.com/google/uuid v1.3.0 go-module
github.com/googleapis/enterprise-certificate-proxy v0.1.0 go-module
github.com/googleapis/gax-go/v2 v2.4.0 go-module
github.com/gorilla/mux v1.8.0 go-module
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 go-module
github.com/grpc-ecosystem/grpc-gateway v1.16.0 go-module
github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 go-module
github.com/hashicorp/errwrap v1.1.0 go-module
github.com/hashicorp/go-immutable-radix v1.3.1 go-module
github.com/hashicorp/go-memdb v1.3.2 go-module
github.com/hashicorp/go-msgpack v0.5.5 go-module
github.com/hashicorp/go-multierror v1.1.1 go-module
github.com/hashicorp/go-sockaddr v1.0.2 go-module
github.com/hashicorp/go-version v1.6.0 go-module
github.com/hashicorp/golang-lru v0.5.4 go-module
github.com/hashicorp/memberlist v0.4.0 go-module
github.com/hashicorp/serf v0.8.5 go-module
github.com/imdario/mergo v0.3.12 go-module
github.com/imdario/mergo v0.3.13 go-module
github.com/imdario/mergo v0.3.16 go-module
github.com/in-toto/in-toto-golang v0.5.0 go-module
github.com/intel/goresctrl v0.2.0 go-module
github.com/ishidawataru/sctp v0.0.0-20230406120618-7ff4192f6ff2 go-module
github.com/jonboulle/clockwork v0.4.0 go-module
github.com/josharian/intern v1.0.0 go-module
github.com/json-iterator/go v1.1.12 go-module
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module
github.com/klauspost/compress v1.11.13 go-module
github.com/klauspost/compress v1.16.5 go-module
github.com/klauspost/compress v1.17.2 go-module
github.com/mailru/easyjson v0.7.6 go-module
github.com/mattn/go-colorable v0.1.13 go-module
github.com/mattn/go-isatty v0.0.17 go-module
github.com/mattn/go-runewidth v0.0.14 go-module
github.com/mattn/go-shellwords v1.0.12 go-module
github.com/matttproud/golang_protobuf_extensions v1.0.4 go-module
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b go-module
github.com/miekg/dns v1.1.43 go-module
github.com/miekg/pkcs11 v1.1.1 go-module
github.com/mistifyio/go-zfs/v3 v3.0.1 go-module
github.com/mitchellh/hashstructure/v2 v2.0.2 go-module
github.com/mitchellh/mapstructure v1.5.0 go-module
github.com/moby/buildkit v0.11.7-0.20230908085316-d3e6c1360f6e go-module
github.com/moby/buildkit v0.12.1 go-module
github.com/moby/ipvs v1.1.0 go-module
github.com/moby/locker v1.0.1 go-module
github.com/moby/patternmatcher v0.6.0 go-module
github.com/moby/pubsub v1.0.0 go-module
github.com/moby/spdystream v0.2.0 go-module
github.com/moby/swarmkit/v2 v2.0.0-20230531205928-01bb7a41396b go-module
github.com/moby/sys/mount v0.3.3 go-module
github.com/moby/sys/mountinfo v0.5.0 go-module
github.com/moby/sys/mountinfo v0.6.2 go-module
github.com/moby/sys/sequential v0.5.0 go-module
github.com/moby/sys/signal v0.6.0 go-module
github.com/moby/sys/signal v0.7.0 go-module
github.com/moby/sys/symlink v0.2.0 go-module
github.com/moby/term v0.5.0 go-module
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd go-module
github.com/modern-go/reflect2 v1.0.2 go-module
github.com/morikuni/aec v1.0.0 go-module
github.com/mrunalp/fileutils v0.5.0 go-module
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 go-module
github.com/opencontainers/go-digest v1.0.0 go-module
github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module
github.com/opencontainers/image-spec v1.1.0-rc3 go-module
github.com/opencontainers/image-spec v1.1.0-rc4 go-module
github.com/opencontainers/runc v0.0.0-20230810173218-ccaecfcbc907 go-module
github.com/opencontainers/runc v1.1.5 go-module
github.com/opencontainers/runc v1.1.7 go-module
github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module
github.com/opencontainers/runtime-spec v1.1.0-rc.2 go-module
github.com/opencontainers/selinux v1.10.0 go-module
github.com/opencontainers/selinux v1.10.1 go-module
github.com/opencontainers/selinux v1.11.0 go-module
github.com/package-url/packageurl-go v0.1.1-0.20220428063043-89078438f170 go-module
github.com/pelletier/go-toml v1.9.5 go-module
github.com/philhofer/fwd v1.1.2 go-module
github.com/pkg/errors v0.9.1 go-module
github.com/pmezard/go-difflib v1.0.0 go-module
github.com/prometheus/client_golang v1.11.1 go-module
github.com/prometheus/client_golang v1.14.0 go-module
github.com/prometheus/client_model v0.2.0 go-module
github.com/prometheus/client_model v0.3.0 go-module
github.com/prometheus/common v0.30.0 go-module
github.com/prometheus/common v0.37.0 go-module
github.com/prometheus/common v0.42.0 go-module
github.com/prometheus/procfs v0.7.3 go-module
github.com/prometheus/procfs v0.8.0 go-module
github.com/prometheus/procfs v0.9.0 go-module
github.com/rivo/uniseg v0.2.0 go-module
github.com/rootless-containers/rootlesskit v1.1.1 go-module
github.com/russross/blackfriday/v2 v2.0.1 go-module
github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 go-module
github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646 go-module
github.com/secure-systems-lab/go-securesystemslib v0.4.0 go-module
github.com/serialx/hashring v0.0.0-20190422032157-8b2912629002 go-module
github.com/shibumi/go-pathspec v1.3.0 go-module
github.com/shurcooL/sanitized_anchor_name v1.0.0 go-module
github.com/sirupsen/logrus v1.8.1 go-module
github.com/sirupsen/logrus v1.9.0 go-module
github.com/sirupsen/logrus v1.9.3 go-module
github.com/spdx/tools-golang v0.3.1-0.20230104082527-d6f58551be3f go-module
github.com/spf13/cobra v1.6.1 go-module
github.com/spf13/cobra v1.7.0 go-module
github.com/spf13/pflag v1.0.5 go-module
github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 go-module
github.com/stretchr/testify v1.8.4 go-module
github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module
github.com/tchap/go-patricia v2.2.6+incompatible go-module
github.com/theupdateframework/notary v0.7.0 go-module
github.com/tilt-dev/fsnotify v1.4.8-0.20220602155310-fff9c274a375 go-module
github.com/tinylib/msgp v1.1.6 go-module
github.com/tonistiigi/fsutil v0.0.0-20230105215944-fb433841cbfa go-module
github.com/tonistiigi/fsutil v0.0.0-20230629203738-36ef4d8c0dbb go-module
github.com/tonistiigi/go-actions-cache v0.0.0-20220404170428-0bdeb6e1eac7 go-module
github.com/tonistiigi/go-archvariant v1.0.0 go-module
github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module
github.com/tonistiigi/vt100 v0.0.0-20230623042737-f9a4f7ef6531 go-module
github.com/urfave/cli v1.22.1 go-module
github.com/vbatts/tar-split v0.11.2 go-module
github.com/vishvananda/netlink v1.1.0 go-module
github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5 go-module
github.com/vishvananda/netlink v1.2.1-beta.2 go-module
github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df go-module
github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f go-module
github.com/vishvananda/netns v0.0.2 go-module
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb go-module
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 go-module
github.com/xeipuuv/gojsonschema v1.2.0 go-module
glib-networking 2.72.0-1 deb
glib-networking-common 2.72.0-1 deb
glib-networking-services 2.72.0-1 deb
glob 10.2.4 npm
glob 7.2.3 npm
glob 8.1.0 npm
gnupg 2.2.27-3ubuntu2.1 deb
gnupg-l10n 2.2.27-3ubuntu2.1 deb
gnupg-utils 2.2.27-3ubuntu2.1 deb
go.etcd.io/bbolt v1.3.7 go-module
go.etcd.io/etcd/client/pkg/v3 v3.5.6 go-module
go.etcd.io/etcd/pkg/v3 v3.5.6 go-module
go.etcd.io/etcd/raft/v3 v3.5.6 go-module
go.etcd.io/etcd/server/v3 v3.5.6 go-module
go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module
go.opencensus.io v0.23.0 go-module
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.28.0 go-module
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.29.0 go-module
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.40.0 go-module
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.29.0 go-module
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.40.0 go-module
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.29.0 go-module
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.40.0 go-module
go.opentelemetry.io/otel v1.14.0 go-module
go.opentelemetry.io/otel v1.3.0 go-module
go.opentelemetry.io/otel v1.4.1 go-module
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.14.0 go-module
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.3.0 go-module
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.4.1 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.14.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.3.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.4.1 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.14.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.3.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.4.1 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.14.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.3.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.4.1 go-module
go.opentelemetry.io/otel/internal/metric v0.27.0 go-module
go.opentelemetry.io/otel/metric v0.27.0 go-module
go.opentelemetry.io/otel/metric v0.37.0 go-module
go.opentelemetry.io/otel/sdk v1.14.0 go-module
go.opentelemetry.io/otel/sdk v1.3.0 go-module
go.opentelemetry.io/otel/sdk v1.4.1 go-module
go.opentelemetry.io/otel/trace v1.14.0 go-module
go.opentelemetry.io/otel/trace v1.3.0 go-module
go.opentelemetry.io/otel/trace v1.4.1 go-module
go.opentelemetry.io/proto/otlp v0.11.0 go-module
go.opentelemetry.io/proto/otlp v0.12.0 go-module
go.opentelemetry.io/proto/otlp v0.19.0 go-module
go.uber.org/atomic v1.9.0 go-module
go.uber.org/multierr v1.8.0 go-module
go.uber.org/zap v1.21.0 go-module
golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd go-module
golang.org/x/crypto v0.14.0 go-module
golang.org/x/crypto v0.7.0 go-module
golang.org/x/exp v0.0.0-20230713183714-613f0c0eb8a1 go-module
golang.org/x/net v0.17.0 go-module
golang.org/x/net v0.8.0 go-module
golang.org/x/net v0.9.0 go-module
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f go-module
golang.org/x/oauth2 v0.1.0 go-module
golang.org/x/oauth2 v0.7.0 go-module
golang.org/x/sync v0.1.0 go-module
golang.org/x/sync v0.3.0 go-module
golang.org/x/sys v0.13.0 go-module
golang.org/x/sys v0.6.0 go-module
golang.org/x/sys v0.7.0 go-module
golang.org/x/term v0.6.0 go-module
golang.org/x/term v0.7.0 go-module
golang.org/x/text v0.13.0 go-module
golang.org/x/text v0.8.0 go-module
golang.org/x/text v0.9.0 go-module
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module
golang.org/x/time v0.3.0 go-module
google.golang.org/api v0.93.0 go-module
google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63 go-module
google.golang.org/genproto v0.0.0-20220706185917-7780775163c4 go-module
google.golang.org/genproto v0.0.0-20230526161137-0005af68ea54 go-module
google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9 go-module
google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19 go-module
google.golang.org/grpc v1.50.1 go-module
google.golang.org/grpc v1.57.0 go-module
google.golang.org/protobuf v1.27.1 go-module
google.golang.org/protobuf v1.28.1 go-module
google.golang.org/protobuf v1.30.0 go-module
gopd 1.0.1 npm
gopkg.in/inf.v0 v0.9.1 go-module
gopkg.in/square/go-jose.v2 v2.5.1 go-module
gopkg.in/yaml.v2 v2.4.0 go-module
gopkg.in/yaml.v3 v3.0.1 go-module
gpg 2.2.27-3ubuntu2.1 deb
gpg-agent 2.2.27-3ubuntu2.1 deb
gpg-wks-client 2.2.27-3ubuntu2.1 deb
gpg-wks-server 2.2.27-3ubuntu2.1 deb
gpgconf 2.2.27-3ubuntu2.1 deb
gpgsm 2.2.27-3ubuntu2.1 deb
gpgv 2.2.27-3ubuntu2.1 deb
graceful-fs 4.2.11 npm
grep 3.7-1build1 deb
groff-base 1.22.4-8build1 deb
gsettings-desktop-schemas 42.0-1ubuntu1 deb
gtk-update-icon-cache 3.24.33-1ubuntu2 deb
gwenview 4:21.12.3-0ubuntu1 deb
gzip 1.10-4ubuntu4.1 deb
has 1.0.3 npm
has-flag 4.0.0 npm
has-property-descriptors 1.0.1 npm
has-proto 1.0.1 npm
has-symbols 1.0.3 npm
has-unicode 2.0.1 npm
hasown 2.0.0 npm
hicolor-icon-theme 0.17-2 deb
hosted-git-info 6.1.1 npm
hostname 3.23ubuntu2 deb
http-cache-semantics 4.1.1 npm
http-errors 2.0.0 npm
http-proxy-agent 5.0.0 npm
httplib2 0.20.2 python
https-proxy-agent 5.0.1 npm
humanity-icon-theme 0.6.16 deb
humanize-ms 1.2.1 npm
hwdata 0.357-1 deb
iconv-lite 0.4.24 npm
iconv-lite 0.6.3 npm
ieee754 1.2.1 npm
ignore-walk 6.0.3 npm
importlib-metadata 4.6.4 python
imurmurhash 0.1.4 npm
indent-string 4.0.0 npm
infer-owner 1.0.4 npm
inflight 1.0.6 npm
inherits 2.0.4 npm
ini 4.1.0 npm
init-package-json 5.0.0 npm
init-system-helpers 1.62 deb
intel-media-va-driver 22.3.1+dfsg1-1ubuntu2 deb
ip 2.0.0 npm
ip-regex 4.3.0 npm
ipaddr.js 1.9.1 npm
iproute2 5.15.0-1ubuntu2 deb
iptables 1.8.7-1ubuntu5.1 deb
is-cidr 4.0.2 npm
is-core-module 2.12.0 npm
is-fullwidth-code-point 3.0.0 npm
is-lambda 1.0.1 npm
isexe 2.0.0 npm
iso-codes 4.9.0-1 deb
jackspeak 2.2.0 npm
jake 10.8.7 npm
jeepney 0.7.1 python
jq 1.6-2.1ubuntu3 deb
json-parse-even-better-errors 3.0.0 npm
json-stringify-nice 1.1.4 npm
jsonparse 1.3.1 npm
just-diff 6.0.2 npm
just-diff-apply 5.5.0 npm
k8s.io/api v0.22.5 go-module
k8s.io/api v0.26.2 go-module
k8s.io/apimachinery v0.22.5 go-module
k8s.io/apimachinery v0.26.2 go-module
k8s.io/apiserver v0.22.5 go-module
k8s.io/client-go v0.22.5 go-module
k8s.io/client-go v0.26.2 go-module
k8s.io/component-base v0.22.5 go-module
k8s.io/cri-api v0.25.0 go-module
k8s.io/klog/v2 v2.30.0 go-module
k8s.io/klog/v2 v2.80.1 go-module
k8s.io/klog/v2 v2.90.1 go-module
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 go-module
k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b go-module
k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5 go-module
kactivitymanagerd 5.24.4-0ubuntu1 deb
kclient 0.3.6 npm
kde-cli-tools 4:5.24.4-0ubuntu1 deb
kde-cli-tools-data 4:5.24.4-0ubuntu1 deb
kde-config-gtk-style 4:5.24.4-0ubuntu1 deb
kde-style-breeze 4:5.24.7-0ubuntu0.1 deb
kded5 5.92.0-0ubuntu1 deb
kdeplasma-addons-data 4:5.24.7-0ubuntu0.1 deb
kdialog 4:21.12.3-0ubuntu1 deb
keyboard-configuration 1.205ubuntu3 deb
keyring 23.5.0 python
kfind 4:21.12.3-0ubuntu1 deb
khotkeys 4:5.24.4-0ubuntu1 deb
khotkeys-data 4:5.24.4-0ubuntu1 deb
kinit 5.92.0-0ubuntu1 deb
kio 5.92.0-0ubuntu1 deb
kio-extras 4:21.12.3-0ubuntu1 deb
kio-extras-data 4:21.12.3-0ubuntu1 deb
knewstuff-dialog 5.92.0-0ubuntu1.1 deb
konsole 4:21.12.3-0ubuntu1 deb
konsole-kpart 4:21.12.3-0ubuntu1 deb
kpackagetool5 5.92.0-0ubuntu1 deb
ksystemstats 5.24.6-0ubuntu0.1 deb
ktexteditor-data 5.92.0-0ubuntu1 deb
ktexteditor-katepart 5.92.0-0ubuntu1 deb
kwayland-data 4:5.92.0-0ubuntu1 deb
kwin-addons 4:5.24.7-0ubuntu0.1 deb
kwin-common 4:5.24.7-0ubuntu0.1 deb
kwin-data 4:5.24.7-0ubuntu0.1 deb
kwin-style-breeze 4:5.24.7-0ubuntu0.1 deb
kwin-x11 4:5.24.7-0ubuntu0.1 deb
kwrite 4:21.12.3-0ubuntu1 deb
launchpadlib 1.10.16 python
lazr.restfulclient 0.14.4 python
lazr.uri 1.0.6 python
liba52-0.7.4 0.7.4-20 deb
libaa1 1.4p5-50build1 deb
libaccounts-glib0 1.25-1 deb
libaccounts-qt5-1 1.16-2 deb
libaccountsservice0 22.07.5-2ubuntu1.4 deb
libacl1 2.3.1-1 deb
libalgorithm-c3-perl 0.11-1 deb
libaom3 3.3.0-1 deb
libapparmor1 3.0.4-2ubuntu2.2 deb
libappimage0 0.1.10+dfsg-0ubuntu1 deb
libappstream4 0.15.2-2 deb
libappstreamqt2 0.15.2-2 deb
libapt-pkg6.0 2.4.10 deb
libarchive13 3.6.0-1ubuntu1 deb
libargon2-1 0~20171227-0.3 deb
libaribb24-0 1.0.3-2 deb
libasound2 1.2.6.1-1ubuntu1 deb
libasound2-data 1.2.6.1-1ubuntu1 deb
libasound2-plugins 1.2.6-1 deb
libass9 1:0.15.2-1 deb
libassuan0 2.5.5-1build1 deb
libasyncns0 0.8-6build2 deb
libatasmart4 0.19-5build2 deb
libatk-bridge2.0-0 2.38.0-3 deb
libatk1.0-0 2.36.0-3build1 deb
libatk1.0-data 2.36.0-3build1 deb
libatspi2.0-0 2.44.0-3 deb
libattr1 1:2.5.1-1build1 deb
libaudit-common 1:3.0.7-1build1 deb
libaudit1 1:3.0.7-1build1 deb
libavahi-client3 0.8-5ubuntu5.1 deb
libavahi-common-data 0.8-5ubuntu5.1 deb
libavahi-common3 0.8-5ubuntu5.1 deb
libavc1394-0 0.5.4-5build2 deb
libavcodec58 7:4.4.2-0ubuntu0.22.04.1 deb
libavdevice58 7:4.4.2-0ubuntu0.22.04.1 deb
libavfilter7 7:4.4.2-0ubuntu0.22.04.1 deb
libavformat58 7:4.4.2-0ubuntu0.22.04.1 deb
libavutil56 7:4.4.2-0ubuntu0.22.04.1 deb
libb-hooks-endofscope-perl 0.25-1 deb
libb-hooks-op-check-perl 0.22-1build5 deb
libbabeltrace1 1.5.8-2build1 deb
libblas3 3.10.0-2ubuntu1 deb
libblkid1 2.37.2-4ubuntu3 deb
libblockdev-fs2 2.26-1 deb
libblockdev-loop2 2.26-1 deb
libblockdev-part-err2 2.26-1 deb
libblockdev-part2 2.26-1 deb
libblockdev-swap2 2.26-1 deb
libblockdev-utils2 2.26-1 deb
libblockdev2 2.26-1 deb
libbluray2 1:1.3.1-1 deb
libboost-regex1.74.0 1.74.0-14ubuntu3 deb
libbpf0 1:0.5.0-1ubuntu22.04.1 deb
libbrotli1 1.0.9-2build6 deb
libbs2b0 3.1.0+dfsg-2.2build1 deb
libbsd0 0.11.5-1 deb
libbz2-1.0 1.0.8-5build1 deb
libc-bin 2.35-0ubuntu3.1 deb
libc6 2.35-0ubuntu3.1 deb
libcaca0 0.99.beta19-2.2ubuntu4 deb
libcairo-gobject2 1.16.0-5ubuntu2 deb
libcairo2 1.16.0-5ubuntu2 deb
libcanberra0 0.30-10ubuntu1.22.04.1 deb
libcap-ng0 0.7.9-2.2build3 deb
libcap2 1:2.44-1ubuntu0.22.04.1 deb
libcap2-bin 1:2.44-1ubuntu0.22.04.1 deb
libcbor0.8 0.8.0-2ubuntu1 deb
libcddb2 1.3.2-7fakesync1 deb
libcdio-cdda2 10.2+2.0.0-1build3 deb
libcdio-paranoia2 10.2+2.0.0-1build3 deb
libcdio19 2.1.0-3build1 deb
libcfitsio9 4.0.0-1 deb
libchromaprint1 1.5.1-2 deb
libclass-c3-perl 0.35-1 deb
libclass-data-inheritable-perl 0.08-3 deb
libclass-inspector-perl 1.36-1 deb
libclass-method-modifiers-perl 2.13-1 deb
libclass-singleton-perl 1.6-1 deb
libcodec2-1.0 1.0.1-3 deb
libcolorcorrect5 4:5.24.7-0ubuntu0.1 deb
libcolord2 1.4.6-1 deb
libcom-err2 1.46.5-2ubuntu1.1 deb
libcrypt1 1:4.4.27-1 deb
libcryptsetup12 2:2.4.3-1ubuntu1.1 deb
libcups2 2.4.1op1-1ubuntu4.7 deb
libcupsfilters1 1.28.15-0ubuntu1.2 deb
libcurl3-gnutls 7.81.0-1ubuntu1.14 deb
libcurl4 7.81.0-1ubuntu1.14 deb
libdata-optlist-perl 0.112-1 deb
libdatetime-locale-perl 1:1.33-1 deb
libdatetime-perl 2:1.55-1build1 deb
libdatetime-timezone-perl 1:2.51-1+2021e deb
libdatrie1 0.2.13-2 deb
libdav1d5 0.9.2-1 deb
libdb5.3 5.3.28+dfsg1-0.8ubuntu3 deb
libdbus-1-3 1.12.20-2ubuntu4.1 deb
libdbus-glib-1-2 0.112-2build1 deb
libdbusmenu-qt5-2 0.9.3+16.04.20160218-2build1 deb
libdc1394-25 2.2.6-4 deb
libdca0 0.0.7-2 deb
libdconf1 0.40.0-3 deb
libdebconfclient0 0.261ubuntu1 deb
libdebuginfod-common 0.186-1build1 deb
libdebuginfod1 0.186-1build1 deb
libdecor-0-0 0.1.0-3build1 deb
libdeflate0 1.10-2 deb
libdevel-callchecker-perl 0.008-1ubuntu4 deb
libdevel-stacktrace-perl 2.0400-1 deb
libdevmapper1.02.1 2:1.02.175-2.1ubuntu4 deb
libdmtx0b 0.7.5-3 deb
libdolphinvcs5 4:21.12.3-0ubuntu1 deb
libdouble-conversion3 3.1.7-4 deb
libdrm-amdgpu1 2.4.113-2~ubuntu0.22.04.1 deb
libdrm-common 2.4.113-2~ubuntu0.22.04.1 deb
libdrm-intel1 2.4.113-2~ubuntu0.22.04.1 deb
libdrm-nouveau2 2.4.113-2~ubuntu0.22.04.1 deb
libdrm-radeon1 2.4.113-2~ubuntu0.22.04.1 deb
libdrm2 2.4.113-2~ubuntu0.22.04.1 deb
libdvbpsi10 1.3.3-1 deb
libdvdnav4 6.1.1-1 deb
libdvdread8 6.1.2-1 deb
libdw1 0.186-1build1 deb
libdynaloader-functions-perl 0.003-1.1 deb
libebml5 1.4.2-2 deb
libedit2 3.1-20210910-1build1 deb
libeditorconfig0 0.12.5-2 deb
libegl-mesa0 23.0.4-0ubuntu1~22.04.1 deb
libegl1 1.4.0-1 deb
libelf1 0.186-1build1 deb
libepoxy0 1.5.10-1 deb
libepub0 0.2.2-4ubuntu3 deb
libeval-closure-perl 0.14-1 deb
libevdev2 1.12.1+dfsg-1 deb
libevent-2.1-7 2.1.12-stable-1build3 deb
libexception-class-perl 1.45-1 deb
libexiv2-27 0.27.5-3ubuntu1 deb
libexpat1 2.4.7-1ubuntu0.2 deb
libexporter-tiny-perl 1.002002-1 deb
libext2fs2 1.46.5-2ubuntu1.1 deb
libfaad2 2.10.0-2 deb
libfdisk1 2.37.2-4ubuntu3 deb
libffi8 3.4.2-4 deb
libfftw3-single3 3.3.8-2ubuntu8 deb
libfido2-1 1.10.0-1 deb
libfile-sharedir-perl 1.118-1 deb
libflac8 1.3.3-2ubuntu0.2 deb
libflite1 2.2-3 deb
libfontconfig1 2.13.1-4.2ubuntu5 deb
libfontembed1 1.28.15-0ubuntu1.2 deb
libfontenc1 1:1.1.4-1build3 deb
libfreetype6 2.11.1+dfsg-1ubuntu0.2 deb
libfribidi0 1.0.8-2ubuntu3.1 deb
libfuse2 2.9.9-5ubuntu3 deb
libfuse3-3 3.10.5-1build1 deb
libgamin0 0.1.10-6 deb
libgbm1 23.0.4-0ubuntu1~22.04.1 deb
libgcc-s1 12.3.0-1ubuntu1~22.04 deb
libgcrypt20 1.9.4-3ubuntu3 deb
libgd3 2.3.0-2ubuntu2 deb
libgdbm-compat4 1.23-1 deb
libgdbm6 1.23-1 deb
libgdk-pixbuf-2.0-0 2.42.8+dfsg-1ubuntu0.2 deb
libgdk-pixbuf2.0-common 2.42.8+dfsg-1ubuntu0.2 deb
libgfortran5 12.3.0-1ubuntu1~22.04 deb
libgif7 5.1.9-2build2 deb
libgirepository-1.0-1 1.72.0-1 deb
libgl1 1.4.0-1 deb
libgl1-mesa-dri 23.0.4-0ubuntu1~22.04.1 deb
libglapi-mesa 23.0.4-0ubuntu1~22.04.1 deb
libgles2 1.4.0-1 deb
libglib2.0-0 2.72.4-0ubuntu2.2 deb
libglib2.0-bin 2.72.4-0ubuntu2.2 deb
libglib2.0-data 2.72.4-0ubuntu2.2 deb
libglu1-mesa 9.0.2-1 deb
libglvnd0 1.4.0-1 deb
libglx-mesa0 23.0.4-0ubuntu1~22.04.1 deb
libglx0 1.4.0-1 deb
libgme0 0.6.3-2 deb
libgmp10 2:6.2.1+dfsg-3ubuntu1 deb
libgnutls30 3.7.3-4ubuntu1.2 deb
libgomp1 12.3.0-1ubuntu1~22.04 deb
libgpg-error0 1.43-3 deb
libgpgme11 1.16.0-1.2ubuntu4.1 deb
libgpgmepp6 1.16.0-1.2ubuntu4.1 deb
libgpm2 1.20.7-10build1 deb
libgps28 3.22-4ubuntu2 deb
libgraphite2-3 1.3.14-1build2 deb
libgs9 9.55.0~dfsg1-0ubuntu5.5 deb
libgs9-common 9.55.0~dfsg1-0ubuntu5.5 deb
libgsm1 1.0.19-1 deb
libgssapi-krb5-2 1.19.2-2ubuntu0.2 deb
libgstreamer-plugins-base1.0-0 1.20.1-1ubuntu0.1 deb
libgstreamer1.0-0 1.20.3-0ubuntu1 deb
libgtk-3-0 3.24.33-1ubuntu2 deb
libgtk-3-common 3.24.33-1ubuntu2 deb
libgudev-1.0-0 1:237-2build1 deb
libharfbuzz0b 2.7.4-1ubuntu3.1 deb
libhash-merge-simple-perl 0.051-2.1 deb
libhogweed6 3.7.3-1build2 deb
libibus-1.0-5 1.5.26-4 deb
libice6 2:1.0.10-1build2 deb
libicu70 70.1-2 deb
libid3tag0 0.15.1b-14 deb
libidn12 1.38-4ubuntu1 deb
libidn2-0 2.3.2-2build1 deb
libiec61883-0 1.2.0-4build3 deb
libigdgmm12 22.1.2+ds1-1 deb
libijs-0.35 0.35-15build2 deb
libilmbase25 2.5.7-2 deb
libimlib2 1.7.4-1build1 deb
libimobiledevice6 1.3.0-6build3 deb
libinput-bin 1.20.0-1ubuntu0.3 deb
libinput10 1.20.0-1ubuntu0.3 deb
libip4tc2 1.8.7-1ubuntu5.1 deb
libip6tc2 1.8.7-1ubuntu5.1 deb
libipt2 2.0.5-1 deb
libisl23 0.24-2build1 deb
libixml10 1:1.8.4-2ubuntu2 deb
libjack-jackd2-0 1.9.20~dfsg-1 deb
libjansson4 2.13.1-1.1build3 deb
libjbig0 2.1-3.1ubuntu0.22.04.1 deb
libjbig2dec0 0.19-3build2 deb
libjpeg-turbo8 2.1.2-0ubuntu1 deb
libjpeg8 8c-2ubuntu10 deb
libjq1 1.6-2.1ubuntu3 deb
libjs-underscore 1.13.2~dfsg-2 deb
libjson-c5 0.15-3~ubuntu1.22.04.2 deb
libjson-glib-1.0-0 1.6.6-1build1 deb
libjson-glib-1.0-common 1.6.6-1build1 deb
libk5crypto3 1.19.2-2ubuntu0.2 deb
libkaccounts2 4:21.12.3-0ubuntu1 deb
libkate1 0.4.1-11build1 deb
libkdecorations2-5v5 4:5.24.4-0ubuntu1 deb
libkdecorations2private9 4:5.24.4-0ubuntu1 deb
libkdsoap1 1.9.1+dfsg-5ubuntu1 deb
libkeyutils1 1.6.1-2ubuntu3 deb
libkf5activities5 5.92.0-0ubuntu1 deb
libkf5activitiesstats1 5.92.0-0ubuntu1 deb
libkf5archive5 5.92.0-0ubuntu1 deb
libkf5attica5 5.92.0-0ubuntu1 deb
libkf5auth-data 5.92.0-0ubuntu1 deb
libkf5auth5 5.92.0-0ubuntu1 deb
libkf5authcore5 5.92.0-0ubuntu1 deb
libkf5baloo5 5.92.0-0ubuntu1 deb
libkf5balooengine5 5.92.0-0ubuntu1 deb
libkf5baloowidgets-data 4:21.12.3-0ubuntu1 deb
libkf5baloowidgets5 4:21.12.3-0ubuntu1 deb
libkf5bluezqt-data 5.92.0-0ubuntu1 deb
libkf5bluezqt6 5.92.0-0ubuntu1 deb
libkf5bookmarks-data 5.92.0-0ubuntu1 deb
libkf5bookmarks5 5.92.0-0ubuntu1 deb
libkf5calendarevents5 5.92.0-0ubuntu1 deb
libkf5codecs-data 5.92.0-0ubuntu1 deb
libkf5codecs5 5.92.0-0ubuntu1 deb
libkf5completion-data 5.92.0-0ubuntu1 deb
libkf5completion5 5.92.0-0ubuntu1 deb
libkf5config-bin 5.92.0-0ubuntu1 deb
libkf5config-data 5.92.0-0ubuntu1 deb
libkf5configcore5 5.92.0-0ubuntu1 deb
libkf5configgui5 5.92.0-0ubuntu1 deb
libkf5configwidgets-data 5.92.0-0ubuntu1 deb
libkf5configwidgets5 5.92.0-0ubuntu1 deb
libkf5coreaddons-data 5.92.0-0ubuntu1 deb
libkf5coreaddons5 5.92.0-0ubuntu1 deb
libkf5crash5 5.92.0-0ubuntu1 deb
libkf5dbusaddons-data 5.92.0-0ubuntu1 deb
libkf5dbusaddons5 5.92.0-0ubuntu1 deb
libkf5declarative-data 5.92.0-0ubuntu1 deb
libkf5declarative5 5.92.0-0ubuntu1 deb
libkf5dnssd-data 5.92.0-0ubuntu1 deb
libkf5dnssd5 5.92.0-0ubuntu1 deb
libkf5doctools5 5.92.0-0ubuntu1 deb
libkf5filemetadata-bin 5.92.0-0ubuntu1 deb
libkf5filemetadata-data 5.92.0-0ubuntu1 deb
libkf5filemetadata3 5.92.0-0ubuntu1 deb
libkf5globalaccel-bin 5.92.0-0ubuntu1 deb
libkf5globalaccel-data 5.92.0-0ubuntu1 deb
libkf5globalaccel5 5.92.0-0ubuntu1 deb
libkf5globalaccelprivate5 5.92.0-0ubuntu1 deb
libkf5guiaddons-bin 5.92.0-0ubuntu1 deb
libkf5guiaddons-data 5.92.0-0ubuntu1 deb
libkf5guiaddons5 5.92.0-0ubuntu1 deb
libkf5holidays-data 1:5.92.0-0ubuntu1 deb
libkf5holidays5 1:5.92.0-0ubuntu1 deb
libkf5i18n-data 5.92.0-0ubuntu2 deb
libkf5i18n5 5.92.0-0ubuntu2 deb
libkf5iconthemes-data 5.92.0-0ubuntu1 deb
libkf5iconthemes5 5.92.0-0ubuntu1 deb
libkf5idletime5 5.92.0-0ubuntu1 deb
libkf5itemmodels5 5.92.0-0ubuntu1 deb
libkf5itemviews-data 5.92.0-0ubuntu1 deb
libkf5itemviews5 5.92.0-0ubuntu1 deb
libkf5jobwidgets-data 5.92.0-0ubuntu1 deb
libkf5jobwidgets5 5.92.0-0ubuntu1 deb
libkf5kcmutils-data 5.92.0-0ubuntu1 deb
libkf5kcmutils5 5.92.0-0ubuntu1 deb
libkf5kdcraw5 21.12.3-0ubuntu1 deb
libkf5kdelibs4support-data 5.92.0-0ubuntu1 deb
libkf5kdelibs4support5 5.92.0-0ubuntu1 deb
libkf5kiocore5 5.92.0-0ubuntu1 deb
libkf5kiofilewidgets5 5.92.0-0ubuntu1 deb
libkf5kiogui5 5.92.0-0ubuntu1 deb
libkf5kiontlm5 5.92.0-0ubuntu1 deb
libkf5kiowidgets5 5.92.0-0ubuntu1 deb
libkf5kipi-data 4:21.12.3-0ubuntu1 deb
libkf5kipi32.0.0 4:21.12.3-0ubuntu1 deb
libkf5kirigami2-5 5.92.0-0ubuntu2 deb
libkf5networkmanagerqt6 5.92.0-0ubuntu1 deb
libkf5newstuff-data 5.92.0-0ubuntu1.1 deb
libkf5newstuff5 5.92.0-0ubuntu1.1 deb
libkf5newstuffcore5 5.92.0-0ubuntu1.1 deb
libkf5notifications-data 5.92.0-0ubuntu1 deb
libkf5notifications5 5.92.0-0ubuntu1 deb
libkf5notifyconfig-data 5.92.0-0ubuntu1 deb
libkf5notifyconfig5 5.92.0-0ubuntu1 deb
libkf5package-data 5.92.0-0ubuntu1 deb
libkf5package5 5.92.0-0ubuntu1 deb