From fcc4261c7c5f563d13b17214f83266c0c9acaa53 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 11 Jun 2024 16:59:14 +0000 Subject: [PATCH] Updating to latest version of supported Go --- go.mod | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/go.mod b/go.mod index e51499d..e7e1016 100644 --- a/go.mod +++ b/go.mod @@ -1,17 +1,20 @@ module github.com/gojektech/heimdall/v6 -go 1.11 +go 1.21.11 require ( github.com/afex/hystrix-go v0.0.0-20180209013831-27fae8d30f1a - github.com/davecgh/go-spew v1.1.0 // indirect github.com/gojektech/valkyrie v0.0.0-20180215180059-6aee720afcdf + github.com/pkg/errors v0.8.0 + github.com/stretchr/testify v1.2.1 +) + +require ( + github.com/davecgh/go-spew v1.1.0 // indirect github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e // indirect github.com/jtolds/gls v4.2.1+incompatible // indirect - github.com/pkg/errors v0.8.0 github.com/pmezard/go-difflib v1.0.0 // indirect github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d // indirect github.com/smartystreets/goconvey v0.0.0-20181108003508-044398e4856c // indirect github.com/stretchr/objx v0.1.1 // indirect - github.com/stretchr/testify v1.2.1 )