-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
47 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,40 @@ | ||
module github.com/dmwm/auth-proxy-server | ||
|
||
go 1.20 | ||
go 1.22.3 | ||
|
||
require ( | ||
github.com/coreos/go-oidc v2.2.1+incompatible | ||
github.com/dmwm/cmsauth v0.0.0-20230224144745-c57dbeca74a3 | ||
github.com/golang-jwt/jwt v3.2.2+incompatible | ||
github.com/google/uuid v1.5.0 | ||
github.com/google/uuid v1.6.0 | ||
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible | ||
github.com/shirou/gopsutil v3.21.11+incompatible | ||
github.com/stretchr/testify v1.8.2 | ||
github.com/stretchr/testify v1.9.0 | ||
github.com/thomasdarimont/go-kc-example v0.0.0-20170529223628-e3951d8faa4c | ||
github.com/vkuznet/auth-proxy-server/auth v0.0.0-20231122130024-dce691ffa36d | ||
github.com/vkuznet/auth-proxy-server/cric v0.0.0-20231122130024-dce691ffa36d | ||
github.com/vkuznet/auth-proxy-server/logging v0.0.0-20231122130024-dce691ffa36d | ||
golang.org/x/crypto v0.17.0 | ||
golang.org/x/oauth2 v0.15.0 | ||
github.com/vkuznet/auth-proxy-server/auth v0.0.0-20231219145946-daeff8f82464 | ||
github.com/vkuznet/auth-proxy-server/cric v0.0.0-20231219145946-daeff8f82464 | ||
github.com/vkuznet/auth-proxy-server/logging v0.0.0-20231219145946-daeff8f82464 | ||
golang.org/x/crypto v0.23.0 | ||
golang.org/x/oauth2 v0.20.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/go-ole/go-ole v1.3.0 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/go-ole/go-ole v1.2.6 // indirect | ||
github.com/lestrrat-go/strftime v1.0.6 // indirect | ||
github.com/pascaldekloe/jwt v1.12.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/pquerna/cachecontrol v0.2.0 // indirect | ||
github.com/tklauser/go-sysconf v0.3.13 // indirect | ||
github.com/tklauser/numcpus v0.7.0 // indirect | ||
github.com/tklauser/go-sysconf v0.3.14 // indirect | ||
github.com/tklauser/numcpus v0.8.0 // indirect | ||
github.com/vkuznet/TokenManager v0.0.1 // indirect | ||
github.com/vkuznet/x509proxy v0.0.0-20210801171832-e47b94db99b6 // indirect | ||
github.com/yusufpapurcu/wmi v1.2.3 // indirect | ||
golang.org/x/net v0.19.0 // indirect | ||
golang.org/x/sys v0.15.0 // indirect | ||
golang.org/x/term v0.15.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
google.golang.org/appengine v1.6.8 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
github.com/yusufpapurcu/wmi v1.2.4 // indirect | ||
golang.org/x/net v0.21.0 // indirect | ||
golang.org/x/sys v0.20.0 // indirect | ||
golang.org/x/term v0.20.0 // indirect | ||
golang.org/x/text v0.15.0 // indirect | ||
gopkg.in/square/go-jose.v2 v2.6.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters