forked from openshift/source-to-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
30 lines (26 loc) · 1.07 KB
/
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
26
27
28
29
30
module github.com/openshift/source-to-image
go 1.13
replace (
github.com/containerd/containerd => github.com/containerd/containerd v1.3.6
github.com/docker/docker => github.com/docker/docker v0.0.0-20190404075923-dbe4a30928d4
golang.org/x/crypto => golang.org/x/crypto v0.0.0-20180904163835-0709b304e793
google.golang.org/genproto => google.golang.org/genproto v0.0.0-20190708153700-3bdd9d9f5532
google.golang.org/grpc => google.golang.org/grpc v1.12.0
)
exclude (
github.com/coreos/bbolt v1.3.3
github.com/coreos/etcd v3.3.15+incompatible
)
require (
github.com/containers/image/v5 v5.4.3
github.com/docker/distribution v2.7.1+incompatible
github.com/docker/docker v1.14.0-0.20190319215453-e7b5f7dbe98c
github.com/docker/go-connections v0.4.0
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/moby/buildkit v0.6.3
github.com/spf13/cobra v0.0.0-20160802223737-7c674d9e7201
github.com/spf13/pflag v1.0.3
golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e
google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55 // indirect
k8s.io/klog/v2 v2.3.0
)