forked from docker-library/meta-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
25 lines (21 loc) · 992 Bytes
/
go.mod
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
module github.com/docker-library/meta-scripts
// ideally this would be the single source of truth for this entire repository, but riscv64 means this bleeds into .go-env.sh too -- if changing this, see that file too
go 1.21
require (
cuelabs.dev/go/oci/ociregistry v0.0.0-20240214163758-5ebe80b0a9a6
github.com/docker-library/bashbrew v0.1.11
github.com/opencontainers/go-digest v1.0.0
github.com/opencontainers/image-spec v1.1.0
golang.org/x/time v0.5.0
)
require (
github.com/containerd/containerd v1.6.19 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/sirupsen/logrus v1.9.0 // indirect
golang.org/x/sys v0.13.0 // indirect
google.golang.org/genproto v0.0.0-20221207170731-23e4bf6bdc37 // indirect
google.golang.org/grpc v1.51.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
)
// https://github.com/cue-labs/oci/pull/29
replace cuelabs.dev/go/oci/ociregistry => github.com/tianon/cuelabs-oci/ociregistry v0.0.0-20240329232705-b652d611e4b3