-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Knut Ahlers <[email protected]>
- Loading branch information
Showing
2 changed files
with
114 additions
and
249 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,68 +1,66 @@ | ||
module github.com/Luzifer/nginx-sso | ||
|
||
go 1.21 | ||
go 1.23 | ||
|
||
toolchain go1.23.4 | ||
|
||
require ( | ||
github.com/GeertJohan/yubigo v0.0.0-20190917122436-175bc097e60e | ||
github.com/Luzifer/go_helpers/v2 v2.22.0 | ||
github.com/Luzifer/rconfig/v2 v2.4.0 | ||
github.com/Masterminds/sprig/v3 v3.2.3 | ||
github.com/coreos/go-oidc/v3 v3.9.0 | ||
github.com/duosecurity/duo_api_golang v0.0.0-20230418202038-096d3306c029 | ||
github.com/Luzifer/go_helpers/v2 v2.25.0 | ||
github.com/Luzifer/rconfig/v2 v2.5.2 | ||
github.com/Masterminds/sprig/v3 v3.3.0 | ||
github.com/coreos/go-oidc/v3 v3.11.0 | ||
github.com/duosecurity/duo_api_golang v0.0.0-20240408132100-cb1770897e66 | ||
github.com/flosch/pongo2 v0.0.0-20200913210552-0d938eb266f3 | ||
github.com/gorilla/context v1.1.2 | ||
github.com/gorilla/sessions v1.2.2 | ||
github.com/gorilla/sessions v1.4.0 | ||
github.com/jda/go-crowd v0.0.0-20180225080536-9c6f17811dc6 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/pquerna/otp v1.4.0 | ||
github.com/sirupsen/logrus v1.9.3 | ||
github.com/stretchr/testify v1.8.4 | ||
golang.org/x/crypto v0.17.0 | ||
golang.org/x/oauth2 v0.15.0 | ||
google.golang.org/api v0.154.0 | ||
github.com/stretchr/testify v1.9.0 | ||
golang.org/x/crypto v0.31.0 | ||
golang.org/x/oauth2 v0.24.0 | ||
google.golang.org/api v0.211.0 | ||
gopkg.in/ldap.v2 v2.5.1 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go/compute v1.23.3 // indirect | ||
cloud.google.com/go/compute/metadata v0.2.3 // indirect | ||
cloud.google.com/go/auth v0.12.1 // indirect | ||
cloud.google.com/go/auth/oauth2adapt v0.2.6 // indirect | ||
cloud.google.com/go/compute/metadata v0.5.2 // indirect | ||
dario.cat/mergo v1.0.1 // indirect | ||
github.com/Masterminds/goutils v1.1.1 // indirect | ||
github.com/Masterminds/semver/v3 v3.2.1 // indirect | ||
github.com/boombuler/barcode v1.0.1 // indirect | ||
github.com/Masterminds/semver/v3 v3.3.1 // indirect | ||
github.com/boombuler/barcode v1.0.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/felixge/httpsnoop v1.0.4 // indirect | ||
github.com/go-jose/go-jose/v3 v3.0.1 // indirect | ||
github.com/go-logr/logr v1.3.0 // indirect | ||
github.com/go-jose/go-jose/v4 v4.0.4 // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/s2a-go v0.1.7 // indirect | ||
github.com/google/uuid v1.5.0 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect | ||
github.com/googleapis/gax-go/v2 v2.12.0 // indirect | ||
github.com/google/s2a-go v0.1.8 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect | ||
github.com/googleapis/gax-go/v2 v2.14.0 // indirect | ||
github.com/gorilla/securecookie v1.1.2 // indirect | ||
github.com/huandu/xstrings v1.4.0 // indirect | ||
github.com/imdario/mergo v0.3.16 // indirect | ||
github.com/huandu/xstrings v1.5.0 // indirect | ||
github.com/mitchellh/copystructure v1.2.0 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.2 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/shopspring/decimal v1.3.1 // indirect | ||
github.com/spf13/cast v1.6.0 // indirect | ||
github.com/shopspring/decimal v1.4.0 // indirect | ||
github.com/spf13/cast v1.7.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
go.opencensus.io v0.24.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 // indirect | ||
go.opentelemetry.io/otel v1.21.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.21.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.21.0 // indirect | ||
golang.org/x/net v0.19.0 // indirect | ||
golang.org/x/sys v0.15.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
google.golang.org/appengine v1.6.8 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20231212172506-995d672761c0 // indirect | ||
google.golang.org/grpc v1.60.1 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.57.0 // indirect | ||
go.opentelemetry.io/otel v1.32.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.32.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.32.0 // indirect | ||
golang.org/x/net v0.32.0 // indirect | ||
golang.org/x/sys v0.28.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20241209162323-e6fa225c2576 // indirect | ||
google.golang.org/grpc v1.68.1 // indirect | ||
google.golang.org/protobuf v1.35.2 // indirect | ||
gopkg.in/asn1-ber.v1 v1.0.0-20181015200546-f715ec2f112d // indirect | ||
gopkg.in/validator.v2 v2.0.1 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
) |
Oops, something went wrong.