Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade oauth2 lib and other bits #1

Merged
merged 1 commit into from
Nov 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Upgrade oauth2 lib and other bits
This gets us the auto-detecting of token exchange AuthStyle
  • Loading branch information
glenjamin committed Nov 16, 2021
commit 1c5bf09c8183fbec0036e68bacf039164d3b176f
19 changes: 9 additions & 10 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@ module github.com/geckoboard/oauth2-cli
go 1.16

require (
github.com/golang/protobuf v1.0.0 // indirect
github.com/onsi/ginkgo v1.4.0
github.com/onsi/gomega v1.3.0
golang.org/x/net v0.0.0-20180208041118-f5dfe339be1d // indirect
golang.org/x/oauth2 v0.0.0-20180207181906-543e37812f10
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
golang.org/x/sys v0.0.0-20180202135801-37707fdb30a5 // indirect
golang.org/x/text v0.3.1-0.20180208041248-4e4a3210bb54 // indirect
google.golang.org/appengine v1.0.0 // indirect
github.com/fsnotify/fsnotify v1.5.1 // indirect
github.com/onsi/ginkgo v1.16.5
github.com/onsi/gomega v1.17.0
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8
golang.org/x/sys v0.0.0-20211116061358-0a5406a5449c // indirect
golang.org/x/text v0.3.7 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v2 v2.0.0 // indirect
)
Loading