From e18db7c236918248868e8f62de2089ef934f0df4 Mon Sep 17 00:00:00 2001 From: "Bryan C. Mills" Date: Thu, 30 Jun 2022 10:24:53 -0400 Subject: [PATCH] all: update go version to 1.17 This enables module graph pruning (https://go.dev/ref/mod#graph-pruning) for this module, pruning out unncessary dependencies for other modules at 'go 1.17' or higher that require this one. Notably, this may prune out a great many transitive dependencies of cloud.google.com/go. Change-Id: Ide1030fc0d308dc768447c4e47c371dfdca6387c Reviewed-on: https://go-review.googlesource.com/c/oauth2/+/415394 TryBot-Result: Gopher Robot Run-TryBot: Bryan Mills Reviewed-by: Cody Oss Auto-Submit: Bryan Mills --- go.mod | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/go.mod b/go.mod index c95f33f..d1ed782 100644 --- a/go.mod +++ b/go.mod @@ -1,9 +1,15 @@ module golang.org/x/oauth2 -go 1.15 +go 1.17 require ( cloud.google.com/go v0.65.0 + github.com/google/go-cmp v0.5.1 golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd google.golang.org/appengine v1.6.6 ) + +require ( + github.com/golang/protobuf v1.4.2 // indirect + google.golang.org/protobuf v1.25.0 // indirect +)