all: update transitive dependencies

Notably, this updates the transitive dependency providing the package
"cloud.google.com/go/compute" from module cloud.google.com/go to
module cloud.google.com/go/compute.

In combination with module graph pruning, this may help modules that
depend on this one avoid unnecessary dependencies on (and via)
the cloud.google.com/go module.

Change-Id: Ie74d0b2bf34e071ecf316ddb1ed567a05789fdf2
Reviewed-on: https://go-review.googlesource.com/c/oauth2/+/415395
Auto-Submit: Bryan Mills <bcmills@google.com>
Reviewed-by: Cody Oss <codyoss@google.com>
Run-TryBot: Bryan Mills <bcmills@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
This commit is contained in:
Bryan C. Mills
2022-06-30 10:28:18 -04:00
committed by Gopher Robot
parent e18db7c236
commit 2104d58473
2 changed files with 285 additions and 13 deletions

12
go.mod
View File

@@ -3,13 +3,13 @@ module golang.org/x/oauth2
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
cloud.google.com/go/compute v1.7.0
github.com/google/go-cmp v0.5.8
golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e
google.golang.org/appengine v1.6.7
)
require (
github.com/golang/protobuf v1.4.2 // indirect
google.golang.org/protobuf v1.25.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
google.golang.org/protobuf v1.28.0 // indirect
)