Skip to content

Commit e18db7c

Browse files
Bryan C. Millsgopherbot
authored andcommitted
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 <gobot@golang.org> Run-TryBot: Bryan Mills <bcmills@google.com> Reviewed-by: Cody Oss <codyoss@google.com> Auto-Submit: Bryan Mills <bcmills@google.com>
1 parent 02e64fa commit e18db7c

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

‎go.mod

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
module golang.org/x/oauth2
22

3-
go 1.15
3+
go 1.17
44

55
require (
66
cloud.google.com/go v0.65.0
7+
github.com/google/go-cmp v0.5.1
78
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd
89
google.golang.org/appengine v1.6.6
910
)
11+
12+
require (
13+
github.com/golang/protobuf v1.4.2 // indirect
14+
google.golang.org/protobuf v1.25.0 // indirect
15+
)

0 commit comments

Comments
 (0)