-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathmodules.txt
More file actions
1290 lines (1290 loc) · 47.6 KB
/
modules.txt
File metadata and controls
1290 lines (1290 loc) · 47.6 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
# dario.cat/mergo v1.0.2
## explicit; go 1.13
dario.cat/mergo
# github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c
## explicit; go 1.16
github.com/Azure/go-ansiterm
github.com/Azure/go-ansiterm/winterm
# github.com/BurntSushi/toml v1.5.0
## explicit; go 1.18
github.com/BurntSushi/toml
github.com/BurntSushi/toml/internal
# github.com/Masterminds/semver/v3 v3.4.0
## explicit; go 1.21
github.com/Masterminds/semver/v3
# github.com/Microsoft/go-winio v0.6.2
## explicit; go 1.21
github.com/Microsoft/go-winio
github.com/Microsoft/go-winio/internal/fs
github.com/Microsoft/go-winio/internal/socket
github.com/Microsoft/go-winio/internal/stringbuffer
github.com/Microsoft/go-winio/pkg/guid
# github.com/VividCortex/ewma v1.2.0
## explicit; go 1.12
github.com/VividCortex/ewma
# github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d
## explicit
github.com/acarl005/stripansi
# github.com/aead/serpent v0.0.0-20160714141033-fba169763ea6
## explicit
github.com/aead/serpent
# github.com/beorn7/perks v1.0.1
## explicit; go 1.11
github.com/beorn7/perks/quantile
# github.com/blang/semver/v4 v4.0.0
## explicit; go 1.14
github.com/blang/semver/v4
# github.com/cespare/xxhash/v2 v2.3.0
## explicit; go 1.11
github.com/cespare/xxhash/v2
# github.com/checkpoint-restore/checkpointctl v1.4.0
## explicit; go 1.23.0
github.com/checkpoint-restore/checkpointctl/lib
# github.com/checkpoint-restore/go-criu/v7 v7.2.0
## explicit; go 1.20
github.com/checkpoint-restore/go-criu/v7
github.com/checkpoint-restore/go-criu/v7/rpc
github.com/checkpoint-restore/go-criu/v7/stats
# github.com/chzyer/readline v1.5.1
## explicit; go 1.15
github.com/chzyer/readline
# github.com/containerd/errdefs v1.0.0
## explicit; go 1.20
github.com/containerd/errdefs
# github.com/containerd/errdefs/pkg v0.3.0
## explicit; go 1.22
github.com/containerd/errdefs/pkg/errhttp
github.com/containerd/errdefs/pkg/internal/cause
# github.com/containerd/log v0.1.0
## explicit; go 1.20
github.com/containerd/log
# github.com/containerd/platforms v1.0.0-rc.1
## explicit; go 1.20
github.com/containerd/platforms
# github.com/containerd/stargz-snapshotter/estargz v0.17.0
## explicit; go 1.23.0
github.com/containerd/stargz-snapshotter/estargz
github.com/containerd/stargz-snapshotter/estargz/errorutil
# github.com/containerd/typeurl/v2 v2.2.3
## explicit; go 1.21
github.com/containerd/typeurl/v2
# github.com/containernetworking/cni v1.3.0
## explicit; go 1.21
github.com/containernetworking/cni/libcni
github.com/containernetworking/cni/pkg/invoke
github.com/containernetworking/cni/pkg/types
github.com/containernetworking/cni/pkg/types/020
github.com/containernetworking/cni/pkg/types/040
github.com/containernetworking/cni/pkg/types/100
github.com/containernetworking/cni/pkg/types/create
github.com/containernetworking/cni/pkg/types/internal
github.com/containernetworking/cni/pkg/utils
github.com/containernetworking/cni/pkg/version
# github.com/containernetworking/plugins v1.8.0
## explicit; go 1.24.2
github.com/containernetworking/plugins/pkg/ns
# github.com/containers/buildah v1.43.0
## explicit; go 1.24.2
github.com/containers/buildah
github.com/containers/buildah/bind
github.com/containers/buildah/chroot
github.com/containers/buildah/copier
github.com/containers/buildah/define
github.com/containers/buildah/docker
github.com/containers/buildah/imagebuildah
github.com/containers/buildah/internal
github.com/containers/buildah/internal/config
github.com/containers/buildah/internal/mkcw
github.com/containers/buildah/internal/mkcw/types
github.com/containers/buildah/internal/open
github.com/containers/buildah/internal/parse
github.com/containers/buildah/internal/pty
github.com/containers/buildah/internal/sbom
github.com/containers/buildah/internal/tmpdir
github.com/containers/buildah/internal/util
github.com/containers/buildah/internal/volumes
github.com/containers/buildah/pkg/binfmt
github.com/containers/buildah/pkg/blobcache
github.com/containers/buildah/pkg/chrootuser
github.com/containers/buildah/pkg/jail
github.com/containers/buildah/pkg/overlay
github.com/containers/buildah/pkg/parse
github.com/containers/buildah/pkg/rusage
github.com/containers/buildah/pkg/sshagent
github.com/containers/buildah/pkg/util
github.com/containers/buildah/pkg/volumes
github.com/containers/buildah/util
# github.com/containers/common v0.62.2
## explicit; go 1.22.8
github.com/containers/common/pkg/strongunits
# github.com/containers/conmon v2.0.20+incompatible
## explicit
github.com/containers/conmon/runner/config
# github.com/containers/gvisor-tap-vsock v0.8.8
## explicit; go 1.24.0
github.com/containers/gvisor-tap-vsock/pkg/types
# github.com/containers/libhvee v0.10.1-0.20250829163521-178d10e67860
## explicit; go 1.23.3
github.com/containers/libhvee/pkg/hypervctl
github.com/containers/libhvee/pkg/kvp/ginsu
github.com/containers/libhvee/pkg/wmiext
# github.com/containers/libtrust v0.0.0-20230121012942-c1716e8a8d01
## explicit
github.com/containers/libtrust
# github.com/containers/luksy v0.0.0-20250910190358-2cf5bc928957
## explicit; go 1.24.0
github.com/containers/luksy
# github.com/containers/ocicrypt v1.2.1
## explicit; go 1.22
github.com/containers/ocicrypt
github.com/containers/ocicrypt/blockcipher
github.com/containers/ocicrypt/config
github.com/containers/ocicrypt/config/keyprovider-config
github.com/containers/ocicrypt/crypto/pkcs11
github.com/containers/ocicrypt/keywrap
github.com/containers/ocicrypt/keywrap/jwe
github.com/containers/ocicrypt/keywrap/keyprovider
github.com/containers/ocicrypt/keywrap/pgp
github.com/containers/ocicrypt/keywrap/pkcs11
github.com/containers/ocicrypt/keywrap/pkcs7
github.com/containers/ocicrypt/spec
github.com/containers/ocicrypt/utils
github.com/containers/ocicrypt/utils/keyprovider
# github.com/containers/podman/v5 v5.8.1
## explicit; go 1.24.2
github.com/containers/podman/v5/cmd/podman/parse
github.com/containers/podman/v5/cmd/podman/registry
github.com/containers/podman/v5/internal/localapi
github.com/containers/podman/v5/internal/remote_build_helpers
github.com/containers/podman/v5/libpod
github.com/containers/podman/v5/libpod/define
github.com/containers/podman/v5/libpod/driver
github.com/containers/podman/v5/libpod/events
github.com/containers/podman/v5/libpod/layers
github.com/containers/podman/v5/libpod/linkmode
github.com/containers/podman/v5/libpod/lock
github.com/containers/podman/v5/libpod/lock/file
github.com/containers/podman/v5/libpod/lock/shm
github.com/containers/podman/v5/libpod/logs
github.com/containers/podman/v5/libpod/logs/reversereader
github.com/containers/podman/v5/libpod/plugin
github.com/containers/podman/v5/libpod/shutdown
github.com/containers/podman/v5/pkg/annotations
github.com/containers/podman/v5/pkg/api/handlers
github.com/containers/podman/v5/pkg/api/handlers/types
github.com/containers/podman/v5/pkg/api/handlers/utils/apiutil
github.com/containers/podman/v5/pkg/auth
github.com/containers/podman/v5/pkg/autoupdate
github.com/containers/podman/v5/pkg/bindings
github.com/containers/podman/v5/pkg/bindings/artifacts
github.com/containers/podman/v5/pkg/bindings/containers
github.com/containers/podman/v5/pkg/bindings/generate
github.com/containers/podman/v5/pkg/bindings/images
github.com/containers/podman/v5/pkg/bindings/internal/util
github.com/containers/podman/v5/pkg/bindings/kube
github.com/containers/podman/v5/pkg/bindings/manifests
github.com/containers/podman/v5/pkg/bindings/network
github.com/containers/podman/v5/pkg/bindings/play
github.com/containers/podman/v5/pkg/bindings/pods
github.com/containers/podman/v5/pkg/bindings/secrets
github.com/containers/podman/v5/pkg/bindings/system
github.com/containers/podman/v5/pkg/bindings/volumes
github.com/containers/podman/v5/pkg/checkpoint
github.com/containers/podman/v5/pkg/checkpoint/crutils
github.com/containers/podman/v5/pkg/copy
github.com/containers/podman/v5/pkg/criu
github.com/containers/podman/v5/pkg/ctime
github.com/containers/podman/v5/pkg/domain/entities
github.com/containers/podman/v5/pkg/domain/entities/reports
github.com/containers/podman/v5/pkg/domain/entities/types
github.com/containers/podman/v5/pkg/domain/filters
github.com/containers/podman/v5/pkg/domain/infra
github.com/containers/podman/v5/pkg/domain/infra/abi
github.com/containers/podman/v5/pkg/domain/infra/abi/internal/expansion
github.com/containers/podman/v5/pkg/domain/infra/abi/parse
github.com/containers/podman/v5/pkg/domain/infra/abi/terminal
github.com/containers/podman/v5/pkg/domain/infra/tunnel
github.com/containers/podman/v5/pkg/domain/utils
github.com/containers/podman/v5/pkg/emulation
github.com/containers/podman/v5/pkg/env
github.com/containers/podman/v5/pkg/errorhandling
github.com/containers/podman/v5/pkg/inspect
github.com/containers/podman/v5/pkg/k8s.io/api/apps/v1
github.com/containers/podman/v5/pkg/k8s.io/api/core/v1
github.com/containers/podman/v5/pkg/k8s.io/apimachinery/pkg/api/resource
github.com/containers/podman/v5/pkg/k8s.io/apimachinery/pkg/apis/meta/v1
github.com/containers/podman/v5/pkg/k8s.io/apimachinery/pkg/types
github.com/containers/podman/v5/pkg/k8s.io/apimachinery/pkg/util/intstr
github.com/containers/podman/v5/pkg/logiface
github.com/containers/podman/v5/pkg/lookup
github.com/containers/podman/v5/pkg/machine
github.com/containers/podman/v5/pkg/machine/apple
github.com/containers/podman/v5/pkg/machine/apple/vfkit
github.com/containers/podman/v5/pkg/machine/applehv
github.com/containers/podman/v5/pkg/machine/compression
github.com/containers/podman/v5/pkg/machine/connection
github.com/containers/podman/v5/pkg/machine/define
github.com/containers/podman/v5/pkg/machine/env
github.com/containers/podman/v5/pkg/machine/hyperv
github.com/containers/podman/v5/pkg/machine/hyperv/vsock
github.com/containers/podman/v5/pkg/machine/ignition
github.com/containers/podman/v5/pkg/machine/libkrun
github.com/containers/podman/v5/pkg/machine/lock
github.com/containers/podman/v5/pkg/machine/ports
github.com/containers/podman/v5/pkg/machine/provider
github.com/containers/podman/v5/pkg/machine/qemu
github.com/containers/podman/v5/pkg/machine/qemu/command
github.com/containers/podman/v5/pkg/machine/sockets
github.com/containers/podman/v5/pkg/machine/vmconfigs
github.com/containers/podman/v5/pkg/machine/wsl
github.com/containers/podman/v5/pkg/machine/wsl/wutil
github.com/containers/podman/v5/pkg/namespaces
github.com/containers/podman/v5/pkg/parallel
github.com/containers/podman/v5/pkg/parallel/ctr
github.com/containers/podman/v5/pkg/pidhandle
github.com/containers/podman/v5/pkg/ps
github.com/containers/podman/v5/pkg/ps/define
github.com/containers/podman/v5/pkg/rctl
github.com/containers/podman/v5/pkg/rootless
github.com/containers/podman/v5/pkg/seccomp
github.com/containers/podman/v5/pkg/selinux
github.com/containers/podman/v5/pkg/signal
github.com/containers/podman/v5/pkg/specgen
github.com/containers/podman/v5/pkg/specgen/generate
github.com/containers/podman/v5/pkg/specgen/generate/kube
github.com/containers/podman/v5/pkg/specgenutil
github.com/containers/podman/v5/pkg/specgenutilexternal
github.com/containers/podman/v5/pkg/syncmap
github.com/containers/podman/v5/pkg/systemd
github.com/containers/podman/v5/pkg/systemd/define
github.com/containers/podman/v5/pkg/systemd/generate
github.com/containers/podman/v5/pkg/systemd/notifyproxy
github.com/containers/podman/v5/pkg/systemd/parser
github.com/containers/podman/v5/pkg/systemd/quadlet
github.com/containers/podman/v5/pkg/trust
github.com/containers/podman/v5/pkg/util
github.com/containers/podman/v5/pkg/util/tlsutil
github.com/containers/podman/v5/utils
github.com/containers/podman/v5/version
github.com/containers/podman/v5/version/rawversion
# github.com/containers/psgo v1.9.1-0.20250826150930-4ae76f200c86
## explicit; go 1.23.3
github.com/containers/psgo
github.com/containers/psgo/internal/capabilities
github.com/containers/psgo/internal/cgroups
github.com/containers/psgo/internal/dev
github.com/containers/psgo/internal/host
github.com/containers/psgo/internal/proc
github.com/containers/psgo/internal/process
# github.com/containers/winquit v1.1.0
## explicit; go 1.19
github.com/containers/winquit/pkg/winquit
github.com/containers/winquit/pkg/winquit/win32
# github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f
## explicit
github.com/coreos/go-systemd/activation
# github.com/coreos/go-systemd/v22 v22.6.0
## explicit; go 1.23
github.com/coreos/go-systemd/v22/activation
github.com/coreos/go-systemd/v22/daemon
github.com/coreos/go-systemd/v22/dbus
github.com/coreos/go-systemd/v22/internal/dlopen
github.com/coreos/go-systemd/v22/journal
github.com/coreos/go-systemd/v22/sdjournal
# github.com/crc-org/vfkit v0.6.1
## explicit; go 1.23.0
github.com/crc-org/vfkit/pkg/config
github.com/crc-org/vfkit/pkg/rest/define
github.com/crc-org/vfkit/pkg/util
# github.com/cyberphone/json-canonicalization v0.0.0-20241213102144-19d51d7fe467
## explicit
github.com/cyberphone/json-canonicalization/go/src/webpki.org/jsoncanonicalizer
# github.com/cyphar/filepath-securejoin v0.5.2
## explicit; go 1.18
github.com/cyphar/filepath-securejoin
github.com/cyphar/filepath-securejoin/internal/consts
github.com/cyphar/filepath-securejoin/pathrs-lite
github.com/cyphar/filepath-securejoin/pathrs-lite/internal
github.com/cyphar/filepath-securejoin/pathrs-lite/internal/assert
github.com/cyphar/filepath-securejoin/pathrs-lite/internal/fd
github.com/cyphar/filepath-securejoin/pathrs-lite/internal/gocompat
github.com/cyphar/filepath-securejoin/pathrs-lite/internal/kernelversion
github.com/cyphar/filepath-securejoin/pathrs-lite/internal/linux
github.com/cyphar/filepath-securejoin/pathrs-lite/internal/procfs
github.com/cyphar/filepath-securejoin/pathrs-lite/procfs
# github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
## explicit
github.com/davecgh/go-spew/spew
# github.com/digitalocean/go-libvirt v0.0.0-20220804181439-8648fbde413e
## explicit; go 1.15
github.com/digitalocean/go-libvirt
github.com/digitalocean/go-libvirt/internal/constants
github.com/digitalocean/go-libvirt/internal/event
github.com/digitalocean/go-libvirt/internal/go-xdr/xdr2
github.com/digitalocean/go-libvirt/socket
github.com/digitalocean/go-libvirt/socket/dialers
# github.com/digitalocean/go-qemu v0.0.0-20250212194115-ee9b0668d242
## explicit; go 1.18
github.com/digitalocean/go-qemu/qmp
# github.com/disiqueira/gotree/v3 v3.0.2
## explicit; go 1.13
github.com/disiqueira/gotree/v3
# github.com/distribution/reference v0.6.0
## explicit; go 1.20
github.com/distribution/reference
# github.com/docker/distribution v2.8.3+incompatible
## explicit
github.com/docker/distribution/registry/api/errcode
github.com/docker/distribution/registry/api/v2
# github.com/docker/docker v28.5.1+incompatible
## explicit
github.com/docker/docker/api
github.com/docker/docker/api/types
github.com/docker/docker/api/types/backend
github.com/docker/docker/api/types/blkiodev
github.com/docker/docker/api/types/build
github.com/docker/docker/api/types/checkpoint
github.com/docker/docker/api/types/common
github.com/docker/docker/api/types/container
github.com/docker/docker/api/types/events
github.com/docker/docker/api/types/filters
github.com/docker/docker/api/types/image
github.com/docker/docker/api/types/mount
github.com/docker/docker/api/types/network
github.com/docker/docker/api/types/registry
github.com/docker/docker/api/types/storage
github.com/docker/docker/api/types/strslice
github.com/docker/docker/api/types/swarm
github.com/docker/docker/api/types/swarm/runtime
github.com/docker/docker/api/types/system
github.com/docker/docker/api/types/time
github.com/docker/docker/api/types/versions
github.com/docker/docker/api/types/volume
github.com/docker/docker/client
github.com/docker/docker/pkg/homedir
github.com/docker/docker/pkg/jsonmessage
github.com/docker/docker/pkg/meminfo
github.com/docker/docker/pkg/namesgenerator
github.com/docker/docker/pkg/progress
github.com/docker/docker/pkg/stdcopy
github.com/docker/docker/pkg/streamformatter
# github.com/docker/docker-credential-helpers v0.9.4
## explicit; go 1.21
github.com/docker/docker-credential-helpers/client
github.com/docker/docker-credential-helpers/credentials
# github.com/docker/go-connections v0.6.0
## explicit; go 1.18
github.com/docker/go-connections/nat
github.com/docker/go-connections/sockets
github.com/docker/go-connections/tlsconfig
# github.com/docker/go-plugins-helpers v0.0.0-20240701071450-45e2431495c8
## explicit
github.com/docker/go-plugins-helpers/sdk
github.com/docker/go-plugins-helpers/volume
# github.com/docker/go-units v0.5.0
## explicit
github.com/docker/go-units
# github.com/ebitengine/purego v0.9.0
## explicit; go 1.18
github.com/ebitengine/purego
github.com/ebitengine/purego/internal/cgo
github.com/ebitengine/purego/internal/fakecgo
github.com/ebitengine/purego/internal/strings
# github.com/felixge/httpsnoop v1.0.4
## explicit; go 1.13
github.com/felixge/httpsnoop
# github.com/fsnotify/fsnotify v1.9.0
## explicit; go 1.17
github.com/fsnotify/fsnotify
github.com/fsnotify/fsnotify/internal
# github.com/fsouza/go-dockerclient v1.12.2
## explicit; go 1.24.0
github.com/fsouza/go-dockerclient
# github.com/go-jose/go-jose/v4 v4.0.5
## explicit; go 1.21
github.com/go-jose/go-jose/v4
github.com/go-jose/go-jose/v4/cipher
github.com/go-jose/go-jose/v4/json
# github.com/go-logr/logr v1.4.3
## explicit; go 1.18
github.com/go-logr/logr
github.com/go-logr/logr/funcr
# github.com/go-logr/stdr v1.2.2
## explicit; go 1.16
github.com/go-logr/stdr
# github.com/go-ole/go-ole v1.3.0
## explicit; go 1.12
github.com/go-ole/go-ole
github.com/go-ole/go-ole/oleutil
# github.com/go-task/slim-sprig/v3 v3.0.0
## explicit; go 1.20
github.com/go-task/slim-sprig/v3
# github.com/godbus/dbus/v5 v5.1.1-0.20241109141217-c266b19b28e9
## explicit; go 1.20
github.com/godbus/dbus/v5
# github.com/gogo/protobuf v1.3.2
## explicit; go 1.15
github.com/gogo/protobuf/proto
# github.com/golang-jwt/jwt/v5 v5.3.0
## explicit; go 1.21
github.com/golang-jwt/jwt/v5
# github.com/golang/protobuf v1.5.4
## explicit; go 1.17
github.com/golang/protobuf/proto
# github.com/google/go-cmp v0.7.0
## explicit; go 1.21
github.com/google/go-cmp/cmp
github.com/google/go-cmp/cmp/internal/diff
github.com/google/go-cmp/cmp/internal/flags
github.com/google/go-cmp/cmp/internal/function
github.com/google/go-cmp/cmp/internal/value
# github.com/google/go-containerregistry v0.20.6
## explicit; go 1.24
github.com/google/go-containerregistry/pkg/name
github.com/google/go-containerregistry/pkg/v1
github.com/google/go-containerregistry/pkg/v1/types
# github.com/google/go-intervals v0.0.2
## explicit; go 1.12
github.com/google/go-intervals/intervalset
# github.com/google/pprof v0.0.0-20260115054156-294ebfa9ad83
## explicit; go 1.24.0
github.com/google/pprof/profile
# github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
## explicit; go 1.13
github.com/google/shlex
# github.com/google/uuid v1.6.0
## explicit
github.com/google/uuid
# github.com/gorilla/mux v1.8.1
## explicit; go 1.20
github.com/gorilla/mux
# github.com/gorilla/schema v1.4.1
## explicit; go 1.20
github.com/gorilla/schema
# github.com/hashicorp/errwrap v1.1.0
## explicit
github.com/hashicorp/errwrap
# github.com/hashicorp/go-multierror v1.1.1
## explicit; go 1.13
github.com/hashicorp/go-multierror
# github.com/inconshreveable/mousetrap v1.1.0
## explicit; go 1.18
github.com/inconshreveable/mousetrap
# github.com/jinzhu/copier v0.4.0
## explicit; go 1.13
github.com/jinzhu/copier
# github.com/jpillora/backoff v1.0.0
## explicit; go 1.13
github.com/jpillora/backoff
# github.com/json-iterator/go v1.1.12
## explicit; go 1.12
github.com/json-iterator/go
# github.com/kevinburke/ssh_config v1.4.0
## explicit; go 1.18
github.com/kevinburke/ssh_config
# github.com/klauspost/compress v1.18.0
## explicit; go 1.22
github.com/klauspost/compress
github.com/klauspost/compress/flate
github.com/klauspost/compress/fse
github.com/klauspost/compress/huff0
github.com/klauspost/compress/internal/cpuinfo
github.com/klauspost/compress/internal/le
github.com/klauspost/compress/internal/snapref
github.com/klauspost/compress/zstd
github.com/klauspost/compress/zstd/internal/xxhash
# github.com/klauspost/pgzip v1.2.6
## explicit
github.com/klauspost/pgzip
# github.com/kr/fs v0.1.0
## explicit
github.com/kr/fs
# github.com/letsencrypt/boulder v0.0.0-20240620165639-de9c06129bec
## explicit; go 1.22.0
github.com/letsencrypt/boulder/core
github.com/letsencrypt/boulder/goodkey
github.com/letsencrypt/boulder/identifier
github.com/letsencrypt/boulder/probs
github.com/letsencrypt/boulder/revocation
github.com/letsencrypt/boulder/strictyaml
# github.com/lufia/plan9stats v0.0.0-20240909124753-873cd0166683
## explicit; go 1.16
github.com/lufia/plan9stats
# github.com/manifoldco/promptui v0.9.0
## explicit; go 1.12
github.com/manifoldco/promptui
github.com/manifoldco/promptui/list
github.com/manifoldco/promptui/screenbuf
# github.com/mattn/go-runewidth v0.0.16
## explicit; go 1.9
github.com/mattn/go-runewidth
# github.com/mattn/go-shellwords v1.0.12
## explicit; go 1.13
github.com/mattn/go-shellwords
# github.com/mattn/go-sqlite3 v1.14.32
## explicit; go 1.19
github.com/mattn/go-sqlite3
# github.com/mdlayher/socket v0.5.1
## explicit; go 1.20
github.com/mdlayher/socket
# github.com/mdlayher/vsock v1.2.1
## explicit; go 1.20
github.com/mdlayher/vsock
# github.com/miekg/pkcs11 v1.1.1
## explicit; go 1.12
github.com/miekg/pkcs11
# github.com/mistifyio/go-zfs/v3 v3.1.0
## explicit; go 1.14
github.com/mistifyio/go-zfs/v3
# github.com/moby/buildkit v0.25.1
## explicit; go 1.24.0
github.com/moby/buildkit/frontend/dockerfile/command
github.com/moby/buildkit/frontend/dockerfile/parser
github.com/moby/buildkit/frontend/dockerfile/shell
github.com/moby/buildkit/util/stack
# github.com/moby/docker-image-spec v1.3.1
## explicit; go 1.18
github.com/moby/docker-image-spec/specs-go/v1
# github.com/moby/go-archive v0.1.0
## explicit; go 1.23.0
github.com/moby/go-archive
github.com/moby/go-archive/compression
github.com/moby/go-archive/tarheader
# github.com/moby/patternmatcher v0.6.0
## explicit; go 1.19
github.com/moby/patternmatcher
# github.com/moby/sys/capability v0.4.0
## explicit; go 1.21
github.com/moby/sys/capability
# github.com/moby/sys/mountinfo v0.7.2
## explicit; go 1.17
github.com/moby/sys/mountinfo
# github.com/moby/sys/sequential v0.6.0
## explicit; go 1.17
github.com/moby/sys/sequential
# github.com/moby/sys/user v0.4.0
## explicit; go 1.17
github.com/moby/sys/user
# github.com/moby/sys/userns v0.1.0
## explicit; go 1.21
github.com/moby/sys/userns
# github.com/moby/term v0.5.2
## explicit; go 1.18
github.com/moby/term
github.com/moby/term/windows
# github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
## explicit
github.com/modern-go/concurrent
# github.com/modern-go/reflect2 v1.0.2
## explicit; go 1.12
github.com/modern-go/reflect2
# github.com/morikuni/aec v1.0.0
## explicit
github.com/morikuni/aec
# github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822
## explicit
github.com/munnerz/goautoneg
# github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f
## explicit
github.com/mwitkow/go-conntrack
# github.com/nxadm/tail v1.4.11
## explicit; go 1.13
github.com/nxadm/tail
github.com/nxadm/tail/ratelimiter
github.com/nxadm/tail/util
github.com/nxadm/tail/watch
github.com/nxadm/tail/winfile
# github.com/onsi/ginkgo/v2 v2.28.1
## explicit; go 1.24.0
github.com/onsi/ginkgo/v2
github.com/onsi/ginkgo/v2/config
github.com/onsi/ginkgo/v2/formatter
github.com/onsi/ginkgo/v2/ginkgo
github.com/onsi/ginkgo/v2/ginkgo/automaxprocs
github.com/onsi/ginkgo/v2/ginkgo/build
github.com/onsi/ginkgo/v2/ginkgo/command
github.com/onsi/ginkgo/v2/ginkgo/generators
github.com/onsi/ginkgo/v2/ginkgo/internal
github.com/onsi/ginkgo/v2/ginkgo/labels
github.com/onsi/ginkgo/v2/ginkgo/outline
github.com/onsi/ginkgo/v2/ginkgo/run
github.com/onsi/ginkgo/v2/ginkgo/unfocus
github.com/onsi/ginkgo/v2/ginkgo/watch
github.com/onsi/ginkgo/v2/internal
github.com/onsi/ginkgo/v2/internal/global
github.com/onsi/ginkgo/v2/internal/interrupt_handler
github.com/onsi/ginkgo/v2/internal/parallel_support
github.com/onsi/ginkgo/v2/internal/reporters
github.com/onsi/ginkgo/v2/internal/testingtproxy
github.com/onsi/ginkgo/v2/reporters
github.com/onsi/ginkgo/v2/types
# github.com/onsi/gomega v1.39.1
## explicit; go 1.24.0
github.com/onsi/gomega
github.com/onsi/gomega/format
github.com/onsi/gomega/internal
github.com/onsi/gomega/internal/gutil
github.com/onsi/gomega/matchers
github.com/onsi/gomega/matchers/internal/miter
github.com/onsi/gomega/matchers/support/goraph/bipartitegraph
github.com/onsi/gomega/matchers/support/goraph/edge
github.com/onsi/gomega/matchers/support/goraph/node
github.com/onsi/gomega/matchers/support/goraph/util
github.com/onsi/gomega/types
# github.com/opencontainers/cgroups v0.0.5
## explicit; go 1.23.0
github.com/opencontainers/cgroups
github.com/opencontainers/cgroups/devices/config
github.com/opencontainers/cgroups/fs
github.com/opencontainers/cgroups/fs2
github.com/opencontainers/cgroups/fscommon
github.com/opencontainers/cgroups/internal/path
# github.com/opencontainers/go-digest v1.0.0
## explicit; go 1.13
github.com/opencontainers/go-digest
# github.com/opencontainers/image-spec v1.1.1
## explicit; go 1.18
github.com/opencontainers/image-spec/specs-go
github.com/opencontainers/image-spec/specs-go/v1
# github.com/opencontainers/runc v1.3.4
## explicit; go 1.23.0
github.com/opencontainers/runc/internal/pathrs
github.com/opencontainers/runc/libcontainer/apparmor
github.com/opencontainers/runc/libcontainer/devices
github.com/opencontainers/runc/libcontainer/utils
# github.com/opencontainers/runtime-spec v1.2.1
## explicit
github.com/opencontainers/runtime-spec/specs-go
# github.com/opencontainers/runtime-tools v0.9.1-0.20250523060157-0ea5ed0382a2
## explicit; go 1.21
github.com/opencontainers/runtime-tools/generate
github.com/opencontainers/runtime-tools/generate/seccomp
github.com/opencontainers/runtime-tools/validate/capabilities
# github.com/opencontainers/selinux v1.13.1
## explicit; go 1.19
github.com/opencontainers/selinux/go-selinux
github.com/opencontainers/selinux/go-selinux/label
github.com/opencontainers/selinux/pkg/pwalkdir
# github.com/openshift/imagebuilder v1.2.19
## explicit; go 1.23.3
github.com/openshift/imagebuilder
github.com/openshift/imagebuilder/dockerfile/command
github.com/openshift/imagebuilder/dockerfile/parser
github.com/openshift/imagebuilder/internal
github.com/openshift/imagebuilder/signal
github.com/openshift/imagebuilder/strslice
# github.com/pkg/errors v0.9.1
## explicit
github.com/pkg/errors
# github.com/pkg/sftp v1.13.9
## explicit; go 1.15
github.com/pkg/sftp
github.com/pkg/sftp/internal/encoding/ssh/filexfer
github.com/pkg/sftp/internal/encoding/ssh/filexfer/openssh
# github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10
## explicit; go 1.20
github.com/planetscale/vtprotobuf/protohelpers
# github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
## explicit
github.com/pmezard/go-difflib/difflib
# github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55
## explicit; go 1.14
github.com/power-devops/perfstat
# github.com/proglottis/gpgme v0.1.5
## explicit; go 1.17
github.com/proglottis/gpgme
# github.com/prometheus/client_golang v1.23.2
## explicit; go 1.23.0
github.com/prometheus/client_golang/internal/github.com/golang/gddo/httputil
github.com/prometheus/client_golang/internal/github.com/golang/gddo/httputil/header
github.com/prometheus/client_golang/prometheus
github.com/prometheus/client_golang/prometheus/collectors
github.com/prometheus/client_golang/prometheus/collectors/version
github.com/prometheus/client_golang/prometheus/internal
github.com/prometheus/client_golang/prometheus/promhttp
github.com/prometheus/client_golang/prometheus/promhttp/internal
# github.com/prometheus/client_model v0.6.2
## explicit; go 1.22.0
github.com/prometheus/client_model/go
# github.com/prometheus/common v0.67.5
## explicit; go 1.24.0
github.com/prometheus/common/config
github.com/prometheus/common/expfmt
github.com/prometheus/common/model
github.com/prometheus/common/promslog
github.com/prometheus/common/version
# github.com/prometheus/exporter-toolkit v0.15.1
## explicit; go 1.24.0
github.com/prometheus/exporter-toolkit/web
# github.com/prometheus/procfs v0.16.1
## explicit; go 1.23.0
github.com/prometheus/procfs
github.com/prometheus/procfs/internal/fs
github.com/prometheus/procfs/internal/util
# github.com/rivo/uniseg v0.4.7
## explicit; go 1.18
github.com/rivo/uniseg
# github.com/seccomp/libseccomp-golang v0.11.1
## explicit; go 1.19
github.com/seccomp/libseccomp-golang
# github.com/secure-systems-lab/go-securesystemslib v0.9.1
## explicit; go 1.23.0
github.com/secure-systems-lab/go-securesystemslib/encrypted
# github.com/shirou/gopsutil/v4 v4.25.9
## explicit; go 1.23.0
github.com/shirou/gopsutil/v4/common
github.com/shirou/gopsutil/v4/cpu
github.com/shirou/gopsutil/v4/internal/common
github.com/shirou/gopsutil/v4/mem
github.com/shirou/gopsutil/v4/net
github.com/shirou/gopsutil/v4/process
# github.com/sigstore/fulcio v1.7.1
## explicit; go 1.24.0
github.com/sigstore/fulcio/pkg/certificate
# github.com/sigstore/protobuf-specs v0.4.1
## explicit; go 1.22.0
github.com/sigstore/protobuf-specs/gen/pb-go/common/v1
# github.com/sigstore/sigstore v1.9.5
## explicit; go 1.23.0
github.com/sigstore/sigstore/pkg/cryptoutils
github.com/sigstore/sigstore/pkg/signature
github.com/sigstore/sigstore/pkg/signature/options
github.com/sigstore/sigstore/pkg/signature/payload
# github.com/sirupsen/logrus v1.9.4
## explicit; go 1.17
github.com/sirupsen/logrus
# github.com/skeema/knownhosts v1.3.2
## explicit; go 1.24.0
github.com/skeema/knownhosts
# github.com/smallstep/pkcs7 v0.1.1
## explicit; go 1.14
github.com/smallstep/pkcs7
github.com/smallstep/pkcs7/internal/legacy/x509
# github.com/spf13/cobra v1.10.2
## explicit; go 1.15
github.com/spf13/cobra
# github.com/spf13/pflag v1.0.10
## explicit; go 1.12
github.com/spf13/pflag
# github.com/stefanberger/go-pkcs11uri v0.0.0-20230803200340-78284954bff6
## explicit; go 1.19
github.com/stefanberger/go-pkcs11uri
# github.com/sylabs/sif/v2 v2.22.0
## explicit; go 1.24.0
github.com/sylabs/sif/v2/pkg/sif
# github.com/tchap/go-patricia/v2 v2.3.3
## explicit; go 1.16
github.com/tchap/go-patricia/v2/patricia
# github.com/titanous/rocacheck v0.0.0-20171023193734-afe73141d399
## explicit
github.com/titanous/rocacheck
# github.com/tklauser/go-sysconf v0.3.15
## explicit; go 1.23.0
github.com/tklauser/go-sysconf
# github.com/tklauser/numcpus v0.10.0
## explicit; go 1.23.0
github.com/tklauser/numcpus
# github.com/ulikunitz/xz v0.5.15
## explicit; go 1.12
github.com/ulikunitz/xz
github.com/ulikunitz/xz/internal/hash
github.com/ulikunitz/xz/internal/xlog
github.com/ulikunitz/xz/lzma
# github.com/vbatts/tar-split v0.12.1
## explicit; go 1.17
github.com/vbatts/tar-split/archive/tar
github.com/vbatts/tar-split/tar/asm
github.com/vbatts/tar-split/tar/storage
# github.com/vbauerster/mpb/v8 v8.10.2
## explicit; go 1.23.0
github.com/vbauerster/mpb/v8
github.com/vbauerster/mpb/v8/cwriter
github.com/vbauerster/mpb/v8/decor
github.com/vbauerster/mpb/v8/internal
# github.com/vishvananda/netlink v1.3.1
## explicit; go 1.12
github.com/vishvananda/netlink
github.com/vishvananda/netlink/nl
# github.com/vishvananda/netns v0.0.5
## explicit; go 1.17
github.com/vishvananda/netns
# github.com/yusufpapurcu/wmi v1.2.4
## explicit; go 1.16
github.com/yusufpapurcu/wmi
# go.etcd.io/bbolt v1.4.3
## explicit; go 1.23
go.etcd.io/bbolt
go.etcd.io/bbolt/errors
go.etcd.io/bbolt/internal/common
go.etcd.io/bbolt/internal/freelist
# go.opentelemetry.io/auto/sdk v1.1.0
## explicit; go 1.22.0
go.opentelemetry.io/auto/sdk
go.opentelemetry.io/auto/sdk/internal/telemetry
# go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0
## explicit; go 1.23.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp/internal/request
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp/internal/semconv
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp/internal/semconvutil
# go.opentelemetry.io/otel v1.36.0
## explicit; go 1.23.0
go.opentelemetry.io/otel
go.opentelemetry.io/otel/attribute
go.opentelemetry.io/otel/attribute/internal
go.opentelemetry.io/otel/baggage
go.opentelemetry.io/otel/codes
go.opentelemetry.io/otel/internal/baggage
go.opentelemetry.io/otel/internal/global
go.opentelemetry.io/otel/propagation
go.opentelemetry.io/otel/semconv/v1.20.0
go.opentelemetry.io/otel/semconv/v1.26.0
# go.opentelemetry.io/otel/metric v1.36.0
## explicit; go 1.23.0
go.opentelemetry.io/otel/metric
go.opentelemetry.io/otel/metric/embedded
go.opentelemetry.io/otel/metric/noop
# go.opentelemetry.io/otel/trace v1.36.0
## explicit; go 1.23.0
go.opentelemetry.io/otel/trace
go.opentelemetry.io/otel/trace/embedded
go.opentelemetry.io/otel/trace/internal/telemetry
go.opentelemetry.io/otel/trace/noop
# go.podman.io/common v0.67.0
## explicit; go 1.24.2
go.podman.io/common/internal
go.podman.io/common/internal/attributedstring
go.podman.io/common/libimage
go.podman.io/common/libimage/define
go.podman.io/common/libimage/filter
go.podman.io/common/libimage/manifests
go.podman.io/common/libimage/platform
go.podman.io/common/libnetwork/cni
go.podman.io/common/libnetwork/etchosts
go.podman.io/common/libnetwork/internal/rootlessnetns
go.podman.io/common/libnetwork/internal/util
go.podman.io/common/libnetwork/netavark
go.podman.io/common/libnetwork/network
go.podman.io/common/libnetwork/pasta
go.podman.io/common/libnetwork/resolvconf
go.podman.io/common/libnetwork/slirp4netns
go.podman.io/common/libnetwork/types
go.podman.io/common/libnetwork/util
go.podman.io/common/pkg/apparmor
go.podman.io/common/pkg/apparmor/internal/supported
go.podman.io/common/pkg/auth
go.podman.io/common/pkg/capabilities
go.podman.io/common/pkg/cgroups
go.podman.io/common/pkg/cgroupv2
go.podman.io/common/pkg/chown
go.podman.io/common/pkg/completion
go.podman.io/common/pkg/config
go.podman.io/common/pkg/detach
go.podman.io/common/pkg/download
go.podman.io/common/pkg/filters
go.podman.io/common/pkg/flag
go.podman.io/common/pkg/hooks
go.podman.io/common/pkg/hooks/0.1.0
go.podman.io/common/pkg/hooks/1.0.0
go.podman.io/common/pkg/hooks/exec
go.podman.io/common/pkg/libartifact
go.podman.io/common/pkg/libartifact/store
go.podman.io/common/pkg/libartifact/types
go.podman.io/common/pkg/machine
go.podman.io/common/pkg/manifests
go.podman.io/common/pkg/netns
go.podman.io/common/pkg/parse
go.podman.io/common/pkg/password
go.podman.io/common/pkg/resize
go.podman.io/common/pkg/retry
go.podman.io/common/pkg/rootlessport
go.podman.io/common/pkg/seccomp
go.podman.io/common/pkg/secrets
go.podman.io/common/pkg/secrets/define
go.podman.io/common/pkg/secrets/filedriver
go.podman.io/common/pkg/secrets/passdriver
go.podman.io/common/pkg/secrets/shelldriver
go.podman.io/common/pkg/servicereaper
go.podman.io/common/pkg/signal
go.podman.io/common/pkg/ssh
go.podman.io/common/pkg/strongunits
go.podman.io/common/pkg/subscriptions
go.podman.io/common/pkg/supplemented
go.podman.io/common/pkg/sysinfo
go.podman.io/common/pkg/systemd
go.podman.io/common/pkg/timetype
go.podman.io/common/pkg/timezone
go.podman.io/common/pkg/umask
go.podman.io/common/pkg/util
go.podman.io/common/pkg/version
go.podman.io/common/version
# go.podman.io/image/v5 v5.39.1
## explicit; go 1.24.0
go.podman.io/image/v5/copy
go.podman.io/image/v5/directory
go.podman.io/image/v5/directory/explicitfilepath
go.podman.io/image/v5/docker
go.podman.io/image/v5/docker/archive
go.podman.io/image/v5/docker/daemon
go.podman.io/image/v5/docker/internal/tarfile
go.podman.io/image/v5/docker/policyconfiguration
go.podman.io/image/v5/docker/reference
go.podman.io/image/v5/image
go.podman.io/image/v5/internal/blobinfocache
go.podman.io/image/v5/internal/image
go.podman.io/image/v5/internal/imagedestination
go.podman.io/image/v5/internal/imagedestination/impl
go.podman.io/image/v5/internal/imagedestination/stubs
go.podman.io/image/v5/internal/imagesource
go.podman.io/image/v5/internal/imagesource/impl
go.podman.io/image/v5/internal/imagesource/stubs
go.podman.io/image/v5/internal/iolimits
go.podman.io/image/v5/internal/manifest
go.podman.io/image/v5/internal/multierr
go.podman.io/image/v5/internal/pkg/platform
go.podman.io/image/v5/internal/private
go.podman.io/image/v5/internal/putblobdigest
go.podman.io/image/v5/internal/rootless
go.podman.io/image/v5/internal/set
go.podman.io/image/v5/internal/signature
go.podman.io/image/v5/internal/signer
go.podman.io/image/v5/internal/streamdigest
go.podman.io/image/v5/internal/tmpdir
go.podman.io/image/v5/internal/unparsedimage
go.podman.io/image/v5/internal/uploadreader
go.podman.io/image/v5/internal/useragent
go.podman.io/image/v5/manifest
go.podman.io/image/v5/oci/archive
go.podman.io/image/v5/oci/internal
go.podman.io/image/v5/oci/layout
go.podman.io/image/v5/openshift
go.podman.io/image/v5/pkg/blobcache
go.podman.io/image/v5/pkg/blobinfocache
go.podman.io/image/v5/pkg/blobinfocache/internal/prioritize
go.podman.io/image/v5/pkg/blobinfocache/memory
go.podman.io/image/v5/pkg/blobinfocache/none
go.podman.io/image/v5/pkg/blobinfocache/sqlite
go.podman.io/image/v5/pkg/compression
go.podman.io/image/v5/pkg/compression/internal
go.podman.io/image/v5/pkg/compression/types
go.podman.io/image/v5/pkg/docker/config
go.podman.io/image/v5/pkg/shortnames
go.podman.io/image/v5/pkg/strslice
go.podman.io/image/v5/pkg/sysregistriesv2
go.podman.io/image/v5/pkg/tlsclientconfig
go.podman.io/image/v5/sif
go.podman.io/image/v5/signature
go.podman.io/image/v5/signature/internal
go.podman.io/image/v5/signature/internal/sequoia
go.podman.io/image/v5/signature/signer
go.podman.io/image/v5/signature/sigstore
go.podman.io/image/v5/signature/sigstore/internal
go.podman.io/image/v5/signature/simplesigning
go.podman.io/image/v5/storage
go.podman.io/image/v5/tarball
go.podman.io/image/v5/transports
go.podman.io/image/v5/transports/alltransports
go.podman.io/image/v5/types
go.podman.io/image/v5/version
# go.podman.io/storage v1.62.0
## explicit; go 1.24.0
go.podman.io/storage
go.podman.io/storage/drivers
go.podman.io/storage/drivers/btrfs
go.podman.io/storage/drivers/copy
go.podman.io/storage/drivers/overlay
go.podman.io/storage/drivers/overlayutils
go.podman.io/storage/drivers/quota
go.podman.io/storage/drivers/register
go.podman.io/storage/drivers/vfs
go.podman.io/storage/drivers/zfs