aboutsummaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2022-09-26 12:31:15 +0200
committerMartin Polden <mpolden@mpolden.no>2022-09-26 12:31:15 +0200
commit2ed308f804a6c24391b1df3c0bb406d6913ae0e0 (patch)
tree8a3d4faa9947753dfa06bd64d8fb50d2c4cccb7f /client
parent25244cb747346d716fe35efee4b66ce8d3b3e6c2 (diff)
Bump minimum required Go version
Diffstat (limited to 'client')
-rw-r--r--client/go/go.mod21
1 files changed, 15 insertions, 6 deletions
diff --git a/client/go/go.mod b/client/go/go.mod
index 4181d4ee2f2..a13e029292a 100644
--- a/client/go/go.mod
+++ b/client/go/go.mod
@@ -1,23 +1,32 @@
module github.com/vespa-engine/vespa/client/go
-go 1.16
+go 1.17
require (
github.com/briandowns/spinner v1.16.0
- github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/color v1.10.0
- github.com/godbus/dbus/v5 v5.0.4 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
- github.com/kr/pretty v0.1.0 // indirect
github.com/mattn/go-colorable v0.1.8
github.com/mattn/go-isatty v0.0.13
github.com/pkg/browser v0.0.0-20210706143420-7d21f8c997e2
github.com/spf13/cobra v1.4.0
github.com/spf13/pflag v1.0.5
- github.com/stretchr/objx v0.1.1 // indirect
github.com/stretchr/testify v1.7.0
github.com/zalando/go-keyring v0.1.1
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c
- gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
)
+
+require (
+ github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
+ github.com/danieljoos/wincred v1.1.0 // indirect
+ github.com/davecgh/go-spew v1.1.1 // indirect
+ github.com/godbus/dbus/v5 v5.0.4 // indirect
+ github.com/inconshreveable/mousetrap v1.0.0 // indirect
+ github.com/kr/pretty v0.1.0 // indirect
+ github.com/pmezard/go-difflib v1.0.0 // indirect
+ github.com/russross/blackfriday/v2 v2.1.0 // indirect
+ github.com/stretchr/objx v0.1.1 // indirect
+ gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
+ gopkg.in/yaml.v2 v2.4.0 // indirect
+)