-
Notifications
You must be signed in to change notification settings - Fork 71
/
go.mod
25 lines (22 loc) · 847 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/tonistiigi/binfmt
go 1.20
require (
github.com/containerd/containerd v1.7.11
github.com/moby/buildkit v0.12.5
github.com/opencontainers/image-spec v1.1.0-rc3
github.com/pkg/errors v0.9.1
)
require (
github.com/Microsoft/hcsshim v0.11.4 // indirect
github.com/containerd/log v0.1.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/tonistiigi/go-archvariant v1.0.0 // indirect
go.opentelemetry.io/otel v1.19.0 // indirect
go.opentelemetry.io/otel/trace v1.19.0 // indirect
golang.org/x/sys v0.13.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 // indirect
google.golang.org/grpc v1.58.3 // indirect
google.golang.org/protobuf v1.31.0 // indirect
)