From 12fb743a317fd5056d2919416cd1d5dad87d71ad Mon Sep 17 00:00:00 2001 From: Adam Shaw Date: Tue, 13 Sep 2022 23:35:21 -0700 Subject: [PATCH] Upgrading Go Version --- go.mod | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index c6cb168f..cce080cb 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/aws/aws-xray-sdk-go -go 1.15 +go 1.18 require ( github.com/DATA-DOG/go-sqlmock v1.4.1 @@ -14,7 +14,19 @@ require ( github.com/stretchr/testify v1.6.1 github.com/valyala/fasthttp v1.34.0 golang.org/x/net v0.0.0-20220225172249-27dd8689420f - google.golang.org/genproto v0.0.0-20210114201628-6edceaf6022f // indirect google.golang.org/grpc v1.35.0 +) + +require ( + github.com/andybalholm/brotli v1.0.4 // indirect + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/jmespath/go-jmespath v0.4.0 // indirect + github.com/klauspost/compress v1.15.0 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/valyala/bytebufferpool v1.0.0 // indirect + golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9 // indirect + golang.org/x/text v0.3.7 // indirect + google.golang.org/genproto v0.0.0-20210114201628-6edceaf6022f // indirect + google.golang.org/protobuf v1.25.0 // indirect gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect )