forked from getporter/porter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
61 lines (54 loc) · 2.68 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
module get.porter.sh/porter
go 1.13
require (
github.com/Masterminds/semver v1.5.0
github.com/PaesslerAG/jsonpath v0.1.1
github.com/PuerkitoBio/goquery v1.5.0 // indirect
github.com/carolynvs/datetime-printer v0.2.0
github.com/cbroglie/mustache v1.0.1
github.com/cnabio/cnab-go v0.12.1-beta1
github.com/cnabio/cnab-to-oci v0.3.1-beta1
github.com/containerd/cgroups v0.0.0-20200108155730-918ed86e29cc // indirect
github.com/containerd/containerd v1.3.0
github.com/containerd/continuity v0.0.0-20200228182428-0f16d7a0959c // indirect
github.com/containerd/fifo v0.0.0-20191213151349-ff969a566b00 // indirect
github.com/containerd/ttrpc v1.0.0 // indirect
github.com/containerd/typeurl v1.0.0 // indirect
github.com/docker/cli v0.0.0-20191017083524-a8ff7f821017
github.com/docker/distribution v2.7.1+incompatible
github.com/docker/docker v1.4.2-0.20181229214054-f76d6a078d88
github.com/docker/go-metrics v0.0.1 // indirect
github.com/dustin/go-humanize v1.0.0
github.com/ghodss/yaml v1.0.0
github.com/gobuffalo/packr/v2 v2.8.0
github.com/gogo/googleapis v1.3.2 // indirect
github.com/google/go-containerregistry v0.0.0-20191015185424-71da34e4d9b3
github.com/gorilla/mux v1.7.4 // indirect
github.com/hashicorp/go-hclog v0.9.2
github.com/hashicorp/go-multierror v1.0.0
github.com/hashicorp/go-plugin v0.0.0-00010101000000-000000000000
github.com/hashicorp/go-version v1.2.0 // indirect
github.com/mattn/go-colorable v0.1.4 // indirect
github.com/mattn/go-isatty v0.0.9 // indirect
github.com/mmcdole/gofeed v1.0.0-beta2
github.com/mmcdole/goxpp v0.0.0-20181012175147-0068e33feabf // indirect
github.com/olekukonko/tablewriter v0.0.4
github.com/pivotal/image-relocation v0.0.0-20191111101224-e94aff6df06c
github.com/pkg/errors v0.8.1
github.com/spf13/afero v1.2.2
github.com/spf13/cobra v0.0.6
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.4.0
github.com/stretchr/testify v1.5.1
github.com/xeipuuv/gojsonschema v1.2.0
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
gopkg.in/AlecAivazis/survey.v1 v1.8.7
gopkg.in/yaml.v2 v2.2.4
)
replace github.com/docker/docker => github.com/moby/moby v0.7.3-0.20190826074503-38ab9da00309
replace golang.org/x/sys => golang.org/x/sys v0.0.0-20190830141801-acfa387b8d69
replace github.com/hashicorp/go-plugin => github.com/carolynvs/go-plugin v1.0.1-acceptstdin
// See https://github.com/containerd/containerd/issues/3031
// When I try to just use the require, go is shortening it to v2.7.1+incompatible which then fails to build...
replace github.com/docker/distribution => github.com/docker/distribution v2.7.1-0.20190205005809-0d3efadf0154+incompatible
replace github.com/cnabio/cnab-go => github.com/vdice/cnab-go v0.0.0-20200604175151-7484e185ff27