2019-06-21 23:23:28 +08:00
|
|
|
module github.com/containers/buildah
|
|
|
|
|
2024-09-03 23:49:17 +08:00
|
|
|
// Warning: Ensure the "go" and "toolchain" versions match exactly to prevent unwanted auto-updates
|
2024-03-27 21:51:52 +08:00
|
|
|
|
2025-09-11 01:02:47 +08:00
|
|
|
go 1.24.0
|
2025-04-17 23:36:04 +08:00
|
|
|
|
2019-06-21 23:23:28 +08:00
|
|
|
require (
|
2025-01-21 04:06:32 +08:00
|
|
|
github.com/containerd/platforms v1.0.0-rc.1
|
2025-04-08 00:41:19 +08:00
|
|
|
github.com/containernetworking/cni v1.3.0
|
2025-08-01 10:39:48 +08:00
|
|
|
github.com/containers/luksy v0.0.0-20250714213221-8fccf784694e
|
2025-01-07 22:40:05 +08:00
|
|
|
github.com/containers/ocicrypt v1.2.1
|
2025-02-19 05:23:49 +08:00
|
|
|
github.com/cyphar/filepath-securejoin v0.4.1
|
2023-10-03 18:56:14 +08:00
|
|
|
github.com/docker/distribution v2.8.3+incompatible
|
2025-07-30 01:38:53 +08:00
|
|
|
github.com/docker/docker v28.3.3+incompatible
|
2025-08-07 23:12:35 +08:00
|
|
|
github.com/docker/go-connections v0.6.0
|
2022-09-01 16:20:58 +08:00
|
|
|
github.com/docker/go-units v0.5.0
|
2025-09-16 22:11:22 +08:00
|
|
|
github.com/fsouza/go-dockerclient v1.12.2
|
2021-03-15 18:25:09 +08:00
|
|
|
github.com/hashicorp/go-multierror v1.1.1
|
2021-06-10 03:34:56 +08:00
|
|
|
github.com/mattn/go-shellwords v1.0.12
|
2025-07-02 04:44:06 +08:00
|
|
|
github.com/moby/buildkit v0.23.2
|
2024-11-13 06:56:46 +08:00
|
|
|
github.com/moby/sys/capability v0.4.0
|
2024-10-23 08:24:51 +08:00
|
|
|
github.com/moby/sys/userns v0.1.0
|
2025-07-17 13:14:17 +08:00
|
|
|
github.com/opencontainers/cgroups v0.0.4
|
2020-05-18 18:10:19 +08:00
|
|
|
github.com/opencontainers/go-digest v1.0.0
|
2025-03-04 00:15:17 +08:00
|
|
|
github.com/opencontainers/image-spec v1.1.1
|
2025-04-30 01:49:49 +08:00
|
|
|
github.com/opencontainers/runc v1.3.0
|
2025-03-01 00:26:01 +08:00
|
|
|
github.com/opencontainers/runtime-spec v1.2.1
|
2025-07-17 13:14:17 +08:00
|
|
|
github.com/opencontainers/runtime-tools v0.9.1-0.20250523060157-0ea5ed0382a2
|
2025-03-24 20:36:19 +08:00
|
|
|
github.com/opencontainers/selinux v1.12.0
|
2025-09-03 01:49:39 +08:00
|
|
|
github.com/openshift/imagebuilder v1.2.17
|
2025-08-06 05:27:41 +08:00
|
|
|
github.com/seccomp/libseccomp-golang v0.11.1
|
2023-06-06 03:26:52 +08:00
|
|
|
github.com/sirupsen/logrus v1.9.3
|
2025-09-02 07:47:50 +08:00
|
|
|
github.com/spf13/cobra v1.10.1
|
|
|
|
github.com/spf13/pflag v1.0.9
|
2025-08-27 23:16:33 +08:00
|
|
|
github.com/stretchr/testify v1.11.1
|
2025-08-26 21:54:01 +08:00
|
|
|
go.etcd.io/bbolt v1.4.3
|
2025-08-29 20:55:12 +08:00
|
|
|
go.podman.io/common v0.0.0-20250826054041-6e4bed3c9118
|
|
|
|
go.podman.io/image/v5 v5.36.1-0.20250820085751-a13b38f45723
|
|
|
|
go.podman.io/storage v1.59.1-0.20250820085751-a13b38f45723
|
2025-08-08 03:22:54 +08:00
|
|
|
golang.org/x/crypto v0.41.0
|
2025-07-10 10:45:42 +08:00
|
|
|
golang.org/x/sync v0.16.0
|
2025-08-07 20:42:08 +08:00
|
|
|
golang.org/x/sys v0.35.0
|
2025-08-08 00:46:18 +08:00
|
|
|
golang.org/x/term v0.34.0
|
2025-03-24 23:38:52 +08:00
|
|
|
tags.cncf.io/container-device-interface v1.0.1
|
2019-06-21 23:23:28 +08:00
|
|
|
)
|
2020-04-06 21:57:52 +08:00
|
|
|
|
2022-06-10 04:01:50 +08:00
|
|
|
require (
|
2025-06-03 17:28:06 +08:00
|
|
|
dario.cat/mergo v1.0.2 // indirect
|
2025-02-20 06:59:11 +08:00
|
|
|
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
|
2025-03-20 18:38:51 +08:00
|
|
|
github.com/BurntSushi/toml v1.5.0 // indirect
|
2024-05-22 07:33:52 +08:00
|
|
|
github.com/Microsoft/go-winio v0.6.2 // indirect
|
2022-06-10 04:01:50 +08:00
|
|
|
github.com/VividCortex/ewma v1.2.0 // indirect
|
|
|
|
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d // indirect
|
2023-07-18 04:27:19 +08:00
|
|
|
github.com/aead/serpent v0.0.0-20160714141033-fba169763ea6 // indirect
|
2022-09-20 15:14:36 +08:00
|
|
|
github.com/chzyer/readline v1.5.1 // indirect
|
2025-01-21 04:06:32 +08:00
|
|
|
github.com/containerd/errdefs v1.0.0 // indirect
|
2024-11-08 05:13:29 +08:00
|
|
|
github.com/containerd/errdefs/pkg v0.3.0 // indirect
|
2023-10-10 05:54:07 +08:00
|
|
|
github.com/containerd/log v0.1.0 // indirect
|
2025-08-29 20:55:12 +08:00
|
|
|
github.com/containerd/stargz-snapshotter/estargz v0.17.0 // indirect
|
2024-12-05 06:19:02 +08:00
|
|
|
github.com/containerd/typeurl/v2 v2.2.3 // indirect
|
2025-06-03 17:28:06 +08:00
|
|
|
github.com/containernetworking/plugins v1.7.1 // indirect
|
2023-01-25 04:35:01 +08:00
|
|
|
github.com/containers/libtrust v0.0.0-20230121012942-c1716e8a8d01 // indirect
|
2025-08-29 20:55:12 +08:00
|
|
|
github.com/coreos/go-systemd/v22 v22.6.0 // indirect
|
2025-03-20 18:38:51 +08:00
|
|
|
github.com/cyberphone/json-canonicalization v0.0.0-20241213102144-19d51d7fe467 // indirect
|
2024-05-10 05:35:14 +08:00
|
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
2022-06-10 04:01:50 +08:00
|
|
|
github.com/disiqueira/gotree/v3 v3.0.2 // indirect
|
2024-05-10 05:35:14 +08:00
|
|
|
github.com/distribution/reference v0.6.0 // indirect
|
2025-04-16 01:24:09 +08:00
|
|
|
github.com/docker/docker-credential-helpers v0.9.3 // indirect
|
2024-01-26 23:27:18 +08:00
|
|
|
github.com/felixge/httpsnoop v1.0.4 // indirect
|
2025-04-17 23:36:04 +08:00
|
|
|
github.com/fsnotify/fsnotify v1.9.0 // indirect
|
2025-02-25 23:24:34 +08:00
|
|
|
github.com/go-jose/go-jose/v4 v4.0.5 // indirect
|
2025-06-03 17:28:06 +08:00
|
|
|
github.com/go-logr/logr v1.4.3 // indirect
|
2024-01-26 23:27:18 +08:00
|
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
2024-01-02 20:09:30 +08:00
|
|
|
github.com/godbus/dbus/v5 v5.1.0 // indirect
|
2022-06-10 04:01:50 +08:00
|
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
2024-05-10 05:35:14 +08:00
|
|
|
github.com/golang/protobuf v1.5.4 // indirect
|
2025-04-17 23:36:04 +08:00
|
|
|
github.com/google/go-containerregistry v0.20.3 // indirect
|
2022-06-10 04:01:50 +08:00
|
|
|
github.com/google/go-intervals v0.0.2 // indirect
|
2024-02-01 20:40:45 +08:00
|
|
|
github.com/google/uuid v1.6.0 // indirect
|
2023-12-20 23:45:01 +08:00
|
|
|
github.com/gorilla/mux v1.8.1 // indirect
|
2022-06-10 04:01:50 +08:00
|
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
2023-04-05 21:14:38 +08:00
|
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
2023-08-31 15:22:36 +08:00
|
|
|
github.com/jinzhu/copier v0.4.0 // indirect
|
2022-06-10 04:01:50 +08:00
|
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
2025-03-20 18:38:51 +08:00
|
|
|
github.com/klauspost/compress v1.18.0 // indirect
|
2023-05-17 04:29:31 +08:00
|
|
|
github.com/klauspost/pgzip v1.2.6 // indirect
|
2024-11-09 03:03:02 +08:00
|
|
|
github.com/letsencrypt/boulder v0.0.0-20240620165639-de9c06129bec // indirect
|
2022-06-10 04:01:50 +08:00
|
|
|
github.com/manifoldco/promptui v0.9.0 // indirect
|
2024-08-10 06:45:29 +08:00
|
|
|
github.com/mattn/go-runewidth v0.0.16 // indirect
|
2025-08-29 20:55:12 +08:00
|
|
|
github.com/mattn/go-sqlite3 v1.14.32 // indirect
|
2022-06-10 04:01:50 +08:00
|
|
|
github.com/miekg/pkcs11 v1.1.1 // indirect
|
2023-05-26 20:35:28 +08:00
|
|
|
github.com/mistifyio/go-zfs/v3 v3.0.1 // indirect
|
2024-05-10 05:35:14 +08:00
|
|
|
github.com/moby/docker-image-spec v1.3.1 // indirect
|
2025-04-17 22:26:17 +08:00
|
|
|
github.com/moby/go-archive v0.1.0 // indirect
|
2023-11-19 23:07:18 +08:00
|
|
|
github.com/moby/patternmatcher v0.6.0 // indirect
|
2024-07-26 21:30:34 +08:00
|
|
|
github.com/moby/sys/mountinfo v0.7.2 // indirect
|
2024-11-05 03:30:21 +08:00
|
|
|
github.com/moby/sys/sequential v0.6.0 // indirect
|
2025-04-10 04:15:23 +08:00
|
|
|
github.com/moby/sys/user v0.4.0 // indirect
|
2025-02-20 06:59:11 +08:00
|
|
|
github.com/moby/term v0.5.2 // indirect
|
2022-06-10 04:01:50 +08:00
|
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
|
|
github.com/morikuni/aec v1.0.0 // indirect
|
2022-07-06 17:14:06 +08:00
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
2024-11-05 03:30:21 +08:00
|
|
|
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
|
2024-05-10 05:35:14 +08:00
|
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
2025-08-29 20:55:12 +08:00
|
|
|
github.com/proglottis/gpgme v0.1.5 // indirect
|
2024-05-10 05:35:14 +08:00
|
|
|
github.com/rivo/uniseg v0.4.7 // indirect
|
2025-08-29 20:55:12 +08:00
|
|
|
github.com/secure-systems-lab/go-securesystemslib v0.9.1 // indirect
|
2025-04-17 23:36:04 +08:00
|
|
|
github.com/sigstore/fulcio v1.6.6 // indirect
|
|
|
|
github.com/sigstore/protobuf-specs v0.4.1 // indirect
|
2025-06-30 19:40:22 +08:00
|
|
|
github.com/sigstore/sigstore v1.9.5 // indirect
|
2025-01-07 22:40:05 +08:00
|
|
|
github.com/smallstep/pkcs7 v0.1.1 // indirect
|
2024-05-23 22:02:08 +08:00
|
|
|
github.com/stefanberger/go-pkcs11uri v0.0.0-20230803200340-78284954bff6 // indirect
|
2025-04-17 23:36:04 +08:00
|
|
|
github.com/sylabs/sif/v2 v2.21.1 // indirect
|
2025-07-15 02:59:21 +08:00
|
|
|
github.com/tchap/go-patricia/v2 v2.3.3 // indirect
|
2022-07-11 22:11:52 +08:00
|
|
|
github.com/titanous/rocacheck v0.0.0-20171023193734-afe73141d399 // indirect
|
2025-09-03 03:49:53 +08:00
|
|
|
github.com/ulikunitz/xz v0.5.15 // indirect
|
2025-03-20 18:38:51 +08:00
|
|
|
github.com/vbatts/tar-split v0.12.1 // indirect
|
2025-06-30 19:40:22 +08:00
|
|
|
github.com/vbauerster/mpb/v8 v8.10.2 // indirect
|
2025-06-03 17:28:06 +08:00
|
|
|
github.com/vishvananda/netlink v1.3.1 // indirect
|
2025-02-20 06:59:11 +08:00
|
|
|
github.com/vishvananda/netns v0.0.5 // indirect
|
2025-08-29 20:55:12 +08:00
|
|
|
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
|
2025-04-17 23:36:04 +08:00
|
|
|
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
|
2025-06-18 01:41:27 +08:00
|
|
|
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0 // indirect
|
|
|
|
go.opentelemetry.io/otel v1.35.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/metric v1.35.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/trace v1.35.0 // indirect
|
2025-06-30 19:40:22 +08:00
|
|
|
go.yaml.in/yaml/v2 v2.4.2 // indirect
|
2025-08-08 03:22:54 +08:00
|
|
|
golang.org/x/mod v0.26.0 // indirect
|
2025-08-29 20:55:12 +08:00
|
|
|
golang.org/x/net v0.43.0 // indirect
|
2025-08-08 03:22:54 +08:00
|
|
|
golang.org/x/text v0.28.0 // indirect
|
2025-04-17 23:36:04 +08:00
|
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20250303144028-a0af3efb3deb // indirect
|
|
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20250313205543-e70fdf4c4cb4 // indirect
|
2025-06-18 01:41:27 +08:00
|
|
|
google.golang.org/grpc v1.72.2 // indirect
|
2025-04-17 23:36:04 +08:00
|
|
|
google.golang.org/protobuf v1.36.6 // indirect
|
2022-06-10 04:01:50 +08:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
|
|
k8s.io/klog v1.0.0 // indirect
|
2025-08-29 20:55:12 +08:00
|
|
|
sigs.k8s.io/yaml v1.6.0 // indirect
|
2025-03-14 02:48:21 +08:00
|
|
|
tags.cncf.io/container-device-interface/specs-go v1.0.0 // indirect
|
2022-06-10 04:01:50 +08:00
|
|
|
)
|