From 76696eba9689638076223feb8024f87c140e0ef4 Mon Sep 17 00:00:00 2001 From: Punit Kulal Date: Mon, 17 Jul 2023 15:56:40 +0530 Subject: [PATCH] bump go.mod to 1.20 --- go.mod | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index 8a0a8c56..b7f291c7 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/raystack/raccoon -go 1.14 +go 1.20 require ( github.com/confluentinc/confluent-kafka-go/v2 v2.0.2 @@ -9,8 +9,32 @@ require ( github.com/sirupsen/logrus v1.6.0 github.com/spf13/viper v1.7.0 github.com/stretchr/testify v1.7.1 - golang.org/x/sys v0.0.0-20211109184856-51b60fd695b3 // indirect google.golang.org/grpc v1.46.0 google.golang.org/protobuf v1.31.0 gopkg.in/alexcesaro/statsd.v2 v2.0.0 ) + +require ( + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/fsnotify/fsnotify v1.4.7 // indirect + github.com/golang/protobuf v1.5.2 // indirect + github.com/hashicorp/hcl v1.0.0 // indirect + github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect + github.com/magiconair/properties v1.8.1 // indirect + github.com/mitchellh/mapstructure v1.1.2 // indirect + github.com/pelletier/go-toml v1.2.0 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/spf13/afero v1.1.2 // indirect + github.com/spf13/cast v1.3.0 // indirect + github.com/spf13/jwalterweatherman v1.0.0 // indirect + github.com/spf13/pflag v1.0.3 // indirect + github.com/stretchr/objx v0.1.1 // indirect + github.com/subosito/gotenv v1.2.0 // indirect + golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 // indirect + golang.org/x/sys v0.0.0-20211109184856-51b60fd695b3 // indirect + golang.org/x/text v0.3.5 // indirect + google.golang.org/genproto v0.0.0-20220503193339-ba3ae3f07e29 // indirect + gopkg.in/ini.v1 v1.51.0 // indirect + gopkg.in/yaml.v2 v2.2.8 // indirect + gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect +)