From b644832690c5f94fb30b9793c9ff25d459073b1d Mon Sep 17 00:00:00 2001 From: Jeff Prestes Date: Sun, 19 Dec 2021 11:34:53 -0300 Subject: [PATCH] update to go 1.17 --- go.mod | 28 ++++++++++++++++++++++++---- skeleton/go.mod.template | 2 +- 2 files changed, 25 insertions(+), 5 deletions(-) diff --git a/go.mod b/go.mod index 8250931..391bc5e 100644 --- a/go.mod +++ b/go.mod @@ -1,9 +1,29 @@ module github.com/novatrixtech/mercurius -go 1.13 +go 1.17 require ( - github.com/fatih/color v1.9.0 - github.com/spf13/cobra v0.0.6 - github.com/spf13/viper v1.6.2 + github.com/fatih/color v1.13.0 + github.com/spf13/cobra v1.3.0 + github.com/spf13/viper v1.10.1 +) + +require ( + github.com/fsnotify/fsnotify v1.5.1 // indirect + github.com/hashicorp/hcl v1.0.0 // indirect + github.com/inconshreveable/mousetrap v1.0.0 // indirect + github.com/magiconair/properties v1.8.5 // indirect + github.com/mattn/go-colorable v0.1.12 // indirect + github.com/mattn/go-isatty v0.0.14 // indirect + github.com/mitchellh/mapstructure v1.4.3 // indirect + github.com/pelletier/go-toml v1.9.4 // indirect + github.com/spf13/afero v1.6.0 // indirect + github.com/spf13/cast v1.4.1 // indirect + github.com/spf13/jwalterweatherman v1.1.0 // indirect + github.com/spf13/pflag v1.0.5 // indirect + github.com/subosito/gotenv v1.2.0 // indirect + golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect + golang.org/x/text v0.3.7 // indirect + gopkg.in/ini.v1 v1.66.2 // indirect + gopkg.in/yaml.v2 v2.4.0 // indirect ) diff --git a/skeleton/go.mod.template b/skeleton/go.mod.template index 436153e..49c5b66 100644 --- a/skeleton/go.mod.template +++ b/skeleton/go.mod.template @@ -1,3 +1,3 @@ module {{.AppPath}} -go 1.16 \ No newline at end of file +go 1.17