Skip to content

Commit 59eba66

Browse files
committed
go mod tidy
Signed-off-by: Michael Adam <[email protected]>
1 parent 4ed65a2 commit 59eba66

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

go.mod

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ require (
1313
github.com/Xuanwo/go-locale v1.1.3
1414
github.com/blang/semver/v4 v4.0.0
1515
github.com/briandowns/spinner v1.23.2
16+
github.com/c4milo/gotoolkit v0.0.0-20190525173301-67483a18c17a
1617
github.com/cenkalti/backoff/v4 v4.3.0
1718
github.com/cheggaaa/pb/v3 v3.1.7
1819
github.com/cloudevents/sdk-go/v2 v2.16.0
@@ -23,6 +24,7 @@ require (
2324
github.com/docker/go-connections v0.6.0
2425
github.com/docker/go-units v0.5.0
2526
github.com/docker/machine v0.16.2
27+
github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815
2628
github.com/elazarl/goproxy v1.7.2
2729
github.com/golang-collections/collections v0.0.0-20130729185459-604e922904d3
2830
github.com/google/go-cmp v0.7.0
@@ -32,6 +34,7 @@ require (
3234
github.com/google/uuid v1.6.0
3335
github.com/hashicorp/go-getter v1.8.0
3436
github.com/hashicorp/go-retryablehttp v0.7.8
37+
github.com/hooklift/assert v0.0.0-20170704181755-9d1defd6d214
3538
github.com/hooklift/iso9660 v1.0.0
3639
github.com/icza/dyno v0.0.0-20230330125955-09f820a8d9c0
3740
github.com/johanneswuerbach/nfsexports v0.0.0-20200318065542-c48c3734757f
@@ -74,6 +77,7 @@ require (
7477
golang.org/x/term v0.36.0
7578
golang.org/x/text v0.28.0
7679
google.golang.org/api v0.248.0
80+
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
7781
gopkg.in/yaml.v2 v2.4.0
7882
k8s.io/api v0.33.4
7983
k8s.io/apimachinery v0.33.4
@@ -124,7 +128,6 @@ require (
124128
github.com/aws/smithy-go v1.22.3 // indirect
125129
github.com/beorn7/perks v1.0.1 // indirect
126130
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
127-
github.com/c4milo/gotoolkit v0.0.0-20190525173301-67483a18c17a // indirect
128131
github.com/cespare/xxhash/v2 v2.3.0 // indirect
129132
github.com/cncf/xds/go v0.0.0-20250501225837-2ac532fd4443 // indirect
130133
github.com/containerd/errdefs/pkg v0.3.0 // indirect
@@ -169,14 +172,15 @@ require (
169172
github.com/hashicorp/go-safetemp v1.0.0 // indirect
170173
github.com/hashicorp/go-version v1.6.0 // indirect
171174
github.com/hectane/go-acl v0.0.0-20190604041725-da78bae5fc95 // indirect
172-
github.com/hooklift/assert v0.0.0-20170704181755-9d1defd6d214 // indirect
173175
github.com/huandu/xstrings v1.3.2 // indirect
174176
github.com/inconshreveable/mousetrap v1.1.0 // indirect
175177
github.com/josharian/intern v1.0.0 // indirect
176178
github.com/json-iterator/go v1.1.12 // indirect
177179
github.com/juju/errors v0.0.0-20220203013757-bd733f3c86b9 // indirect
178180
github.com/juju/loggo v1.0.0 // indirect
179181
github.com/klauspost/compress v1.18.0 // indirect
182+
github.com/kr/pretty v0.3.1 // indirect
183+
github.com/kr/text v0.2.0 // indirect
180184
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
181185
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
182186
github.com/mailru/easyjson v0.7.7 // indirect
@@ -211,6 +215,7 @@ require (
211215
github.com/prometheus/common v0.62.0 // indirect
212216
github.com/prometheus/procfs v0.15.1 // indirect
213217
github.com/rivo/uniseg v0.4.7 // indirect
218+
github.com/rogpeppe/go-internal v1.13.1 // indirect
214219
github.com/russross/blackfriday/v2 v2.1.0 // indirect
215220
github.com/sagikazarmark/locafero v0.7.0 // indirect
216221
github.com/sayboras/dockerclient v1.0.0 // indirect

go.sum

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,7 @@ github.com/docker/go-units v0.0.0-20151230175859-0bbddae09c5a/go.mod h1:fgPhTUdO
193193
github.com/docker/go-units v0.5.0 h1:69rxXcBk27SvSaaxTtLh/8llcHD8vYHT7WSdRZ/jvr4=
194194
github.com/docker/go-units v0.5.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk=
195195
github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96/go.mod h1:Qh8CwZgvJUkLughtfhJv5dyTYa91l1fOUCrgjqmcifM=
196+
github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815 h1:bWDMxwH3px2JBh6AyO7hdCn/PkvCZXii8TGj7sbtEbQ=
196197
github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE=
197198
github.com/elazarl/goproxy v0.0.0-20180725130230-947c36da3153/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc=
198199
github.com/elazarl/goproxy v1.7.2 h1:Y2o6urb7Eule09PjlhQRGNsqRfPmYI3KKQLFpCAV3+o=
@@ -559,6 +560,7 @@ github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2 h1:JhzVVoYvbOACxoU
559560
github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2/go.mod h1:iIss55rKnNBTvrwdmkUpLnDpZoAHvWaiq5+iMmen4AE=
560561
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 h1:KoWmjvw+nsYOo29YJK9vDA65RGE3NrOnUtO7a+RF9HU=
561562
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8/go.mod h1:HKlIX3XHQyzLZPlr7++PzdhaXEj94dEiJgZDTsxEqUI=
563+
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA=
562564
github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
563565
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
564566
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
@@ -597,6 +599,7 @@ github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJ
597599
github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ=
598600
github.com/rivo/uniseg v0.4.7/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
599601
github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
602+
github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs=
600603
github.com/rogpeppe/go-internal v1.13.1 h1:KvO1DLK/DRN07sQ1LQKScxyZJuNnedQ5/wKSR38lUII=
601604
github.com/rogpeppe/go-internal v1.13.1/go.mod h1:uMEvuHeurkdAXX61udpOXGD/AzZDWNMNyH2VO9fmH0o=
602605
github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=

0 commit comments

Comments
 (0)