forked from buildpacks/pack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
43 lines (41 loc) · 1.86 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
31
32
33
34
35
36
37
38
39
40
41
42
43
module github.com/buildpacks/pack
require (
github.com/BurntSushi/toml v0.3.1
github.com/Masterminds/semver v1.5.0
github.com/Microsoft/hcsshim v0.8.7 // indirect
github.com/apex/log v1.1.2
github.com/buildpacks/imgutil v0.0.0-20200313170640-a02052f47d62
github.com/buildpacks/lifecycle v0.7.1
github.com/containerd/containerd v1.3.3 // indirect
github.com/containerd/continuity v0.0.0-20200107194136-26c1120b8d41 // indirect
github.com/dgodd/dockerdial v1.0.1
github.com/docker/cli v0.0.0-20200312141509-ef2f64abbd37 // indirect
github.com/docker/docker v1.4.2-0.20200221181110-62bd5a33f707
github.com/docker/go-connections v0.4.0
github.com/gogo/protobuf v1.3.1 // indirect
github.com/golang/mock v1.3.1
github.com/golang/protobuf v1.3.5 // indirect
github.com/google/go-cmp v0.3.0
github.com/google/go-containerregistry v0.0.0-20200313165449-955bf358a3d8
github.com/heroku/color v0.0.6
github.com/mattn/go-colorable v0.1.6 // indirect
github.com/mitchellh/ioprogress v0.0.0-20180201004757-6a23b12fa88e
github.com/onsi/ginkgo v1.11.0 // indirect
github.com/onsi/gomega v1.8.1
github.com/opencontainers/image-spec v1.0.1
github.com/opencontainers/runc v0.1.1 // indirect
github.com/opencontainers/selinux v1.4.0 // indirect
github.com/pkg/errors v0.9.1
github.com/sabhiram/go-gitignore v0.0.0-20180611051255-d3107576ba94
github.com/sclevine/spec v1.4.0
github.com/spf13/cobra v0.0.6
golang.org/x/crypto v0.0.0-20200311171314-f7b00557c8c4
golang.org/x/net v0.0.0-20200301022130-244492dfa37a // indirect
golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527 // indirect
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect
google.golang.org/genproto v0.0.0-20200313141609-30c55424f95d // indirect
google.golang.org/grpc v1.28.0 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gotest.tools/v3 v3.0.2 // indirect
)
go 1.13