mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 02:54:20 +00:00
80961125a7
This PR adds support for userinfo and introspection of V2 tokens. Further V2 access tokens and session tokens can be used for authentication on the ZITADEL API (like the current access tokens).
214 lines
9.7 KiB
Modula-2
214 lines
9.7 KiB
Modula-2
module github.com/zitadel/zitadel
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
cloud.google.com/go/storage v1.30.1
|
|
github.com/BurntSushi/toml v1.2.1
|
|
github.com/DATA-DOG/go-sqlmock v1.5.0
|
|
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.13.0
|
|
github.com/Masterminds/sprig v2.22.0+incompatible
|
|
github.com/Masterminds/squirrel v1.5.4
|
|
github.com/VictoriaMetrics/fastcache v1.12.1
|
|
github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b
|
|
github.com/allegro/bigcache v1.2.1
|
|
github.com/benbjohnson/clock v1.3.0
|
|
github.com/boombuler/barcode v1.0.1
|
|
github.com/cockroachdb/cockroach-go/v2 v2.3.3
|
|
github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be
|
|
github.com/descope/virtualwebauthn v1.0.2
|
|
github.com/dop251/goja v0.0.0-20230402114112-623f9dda9079
|
|
github.com/dop251/goja_nodejs v0.0.0-20230322100729-2550c7b6c124
|
|
github.com/drone/envsubst v1.0.3
|
|
github.com/envoyproxy/protoc-gen-validate v0.10.1
|
|
github.com/fatih/color v1.13.0
|
|
github.com/go-ldap/ldap/v3 v3.4.4
|
|
github.com/go-webauthn/webauthn v0.8.2
|
|
github.com/golang/glog v1.1.1
|
|
github.com/golang/mock v1.6.0
|
|
github.com/golang/protobuf v1.5.3
|
|
github.com/gorilla/csrf v1.7.1
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/gorilla/schema v1.2.0
|
|
github.com/gorilla/securecookie v1.1.1
|
|
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
|
|
github.com/grpc-ecosystem/grpc-gateway v1.16.0
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.15.2
|
|
github.com/h2non/gock v1.2.0
|
|
github.com/improbable-eng/grpc-web v0.15.0
|
|
github.com/jackc/pgconn v1.14.0
|
|
github.com/jackc/pgtype v1.14.0
|
|
github.com/jackc/pgx/v4 v4.18.1
|
|
github.com/jarcoal/jpath v0.0.0-20140328210829-f76b8b2dbf52
|
|
github.com/jinzhu/gorm v1.9.16
|
|
github.com/k3a/html2text v1.1.0
|
|
github.com/kevinburke/twilio-go v0.0.0-20221122012537-65f3dd7539e2
|
|
github.com/lib/pq v1.10.7
|
|
github.com/lucasb-eyer/go-colorful v1.2.0
|
|
github.com/minio/minio-go/v7 v7.0.50
|
|
github.com/mitchellh/mapstructure v1.5.0
|
|
github.com/muesli/gamut v0.3.1
|
|
github.com/muhlemmer/gu v0.3.1
|
|
github.com/nicksnyder/go-i18n/v2 v2.2.1
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/pquerna/otp v1.4.0
|
|
github.com/rakyll/statik v0.1.7
|
|
github.com/rs/cors v1.9.0
|
|
github.com/sony/sonyflake v1.1.0
|
|
github.com/spf13/cobra v1.7.0
|
|
github.com/spf13/viper v1.15.0
|
|
github.com/stretchr/testify v1.8.4
|
|
github.com/superseriousbusiness/exifremove v0.0.0-20210330092427-6acd27eac203
|
|
github.com/ttacon/libphonenumber v1.2.1
|
|
github.com/zitadel/logging v0.3.4
|
|
github.com/zitadel/oidc/v2 v2.6.3
|
|
github.com/zitadel/passwap v0.2.0
|
|
github.com/zitadel/saml v0.0.11
|
|
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.40.0
|
|
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.40.0
|
|
go.opentelemetry.io/otel v1.14.0
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.14.0
|
|
go.opentelemetry.io/otel/exporters/prometheus v0.37.0
|
|
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.14.0
|
|
go.opentelemetry.io/otel/metric v0.37.0
|
|
go.opentelemetry.io/otel/sdk v1.14.0
|
|
go.opentelemetry.io/otel/sdk/metric v0.37.0
|
|
go.opentelemetry.io/otel/trace v1.14.0
|
|
golang.org/x/crypto v0.9.0
|
|
golang.org/x/net v0.10.0
|
|
golang.org/x/oauth2 v0.8.0
|
|
golang.org/x/sync v0.1.0
|
|
golang.org/x/text v0.9.0
|
|
golang.org/x/tools v0.7.0
|
|
google.golang.org/api v0.115.0
|
|
google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd
|
|
google.golang.org/grpc v1.54.0
|
|
google.golang.org/protobuf v1.30.0
|
|
gopkg.in/square/go-jose.v2 v2.6.0
|
|
sigs.k8s.io/yaml v1.3.0
|
|
)
|
|
|
|
require (
|
|
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.37.0 // indirect
|
|
github.com/go-logr/logr v1.2.4 // indirect
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
|
github.com/go-sql-driver/mysql v1.6.0 // indirect
|
|
github.com/go-webauthn/revoke v0.1.9 // indirect
|
|
github.com/google/go-tpm v0.3.3 // indirect
|
|
github.com/google/pprof v0.0.0-20230323073829-e72429f035bd // indirect
|
|
github.com/gorilla/websocket v1.4.2 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.2.4 // indirect
|
|
github.com/mattn/go-colorable v0.1.12 // indirect
|
|
github.com/mattn/go-isatty v0.0.17 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.0.7 // indirect
|
|
github.com/smartystreets/assertions v1.0.0 // indirect
|
|
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.14.0 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
)
|
|
|
|
require (
|
|
cloud.google.com/go v0.110.0 // indirect
|
|
cloud.google.com/go/compute v1.19.0 // indirect
|
|
cloud.google.com/go/compute/metadata v0.2.3 // indirect
|
|
cloud.google.com/go/iam v1.0.0 // indirect
|
|
cloud.google.com/go/trace v1.9.0 // indirect
|
|
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
|
|
github.com/Masterminds/goutils v1.1.1 // indirect
|
|
github.com/Masterminds/semver v1.5.0 // indirect
|
|
github.com/amdonov/xmlsig v0.1.0 // indirect
|
|
github.com/beevik/etree v1.1.0 // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cenkalti/backoff/v4 v4.2.0 // indirect
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect
|
|
github.com/dlclark/regexp2 v1.8.1 // indirect
|
|
github.com/dsoprea/go-exif v0.0.0-20221012082141-d21ac8e2de85 // indirect
|
|
github.com/dsoprea/go-exif/v2 v2.0.0-20221012082141-d21ac8e2de85 // indirect
|
|
github.com/dsoprea/go-iptc v0.0.0-20200610044640-bc9ca208b413 // indirect
|
|
github.com/dsoprea/go-jpeg-image-structure v0.0.0-20221012074422-4f3f7e934102 // indirect
|
|
github.com/dsoprea/go-logging v0.0.0-20200710184922-b02d349568dd // indirect
|
|
github.com/dsoprea/go-photoshop-info-format v0.0.0-20200610045659-121dd752914d // indirect
|
|
github.com/dsoprea/go-png-image-structure v0.0.0-20210512210324-29b889a6093d // indirect
|
|
github.com/dsoprea/go-utility v0.0.0-20221003172846-a3e1774ef349 // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/felixge/httpsnoop v1.0.3 // indirect
|
|
github.com/fsnotify/fsnotify v1.6.0 // indirect
|
|
github.com/fxamacker/cbor/v2 v2.4.0 // indirect
|
|
github.com/ghodss/yaml v1.0.0 // indirect
|
|
github.com/go-asn1-ber/asn1-ber v1.5.4 // indirect
|
|
github.com/go-errors/errors v1.4.2 // indirect
|
|
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
|
|
github.com/go-xmlfmt/xmlfmt v1.1.2 // indirect
|
|
github.com/gofrs/flock v0.8.1 // indirect
|
|
github.com/gofrs/uuid v4.4.0+incompatible // indirect
|
|
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
|
|
github.com/golang/geo v0.0.0-20230404232722-c4acd7a044dc // indirect
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
|
github.com/golang/snappy v0.0.4 // indirect
|
|
github.com/google/go-cmp v0.5.9 // indirect
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
|
|
github.com/googleapis/gax-go/v2 v2.8.0 // indirect
|
|
github.com/gorilla/handlers v1.5.1 // indirect
|
|
github.com/h2non/filetype v1.1.3 // indirect
|
|
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/huandu/xstrings v1.4.0 // indirect
|
|
github.com/imdario/mergo v0.3.15 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
|
|
github.com/jackc/pgio v1.0.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgproto3/v2 v2.3.2 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jonboulle/clockwork v0.4.0 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/kevinburke/go-types v0.0.0-20210723172823-2deba1f80ba7 // indirect
|
|
github.com/kevinburke/rest v0.0.0-20230306061549-8f487d822ad0 // indirect
|
|
github.com/klauspost/compress v1.16.4 // indirect
|
|
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect
|
|
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect
|
|
github.com/magiconair/properties v1.8.7 // indirect
|
|
github.com/mattn/go-sqlite3 v2.0.3+incompatible // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
|
|
github.com/minio/md5-simd v1.1.2 // indirect
|
|
github.com/minio/sha256-simd v1.0.0 // indirect
|
|
github.com/mitchellh/copystructure v1.2.0 // indirect
|
|
github.com/mitchellh/reflectwalk v1.0.2 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/muesli/clusters v0.0.0-20200529215643-2700303c1762 // indirect
|
|
github.com/muesli/kmeans v0.3.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/prometheus/client_golang v1.14.0
|
|
github.com/prometheus/client_model v0.3.0 // indirect
|
|
github.com/prometheus/common v0.42.0 // indirect
|
|
github.com/prometheus/procfs v0.9.0 // indirect
|
|
github.com/rs/xid v1.4.0 // indirect
|
|
github.com/russellhaering/goxmldsig v1.3.0 // indirect
|
|
github.com/sirupsen/logrus v1.9.3
|
|
github.com/spf13/afero v1.9.5 // indirect
|
|
github.com/spf13/cast v1.5.0 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/subosito/gotenv v1.4.2 // indirect
|
|
github.com/ttacon/builder v0.0.0-20170518171403-c099f663e1c2 // indirect
|
|
github.com/x448/float16 v0.8.4 // indirect
|
|
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
|
|
go.opencensus.io v0.24.0 // indirect
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.14.0 // indirect
|
|
go.opentelemetry.io/proto/otlp v0.19.0 // indirect
|
|
golang.org/x/mod v0.10.0 // indirect
|
|
golang.org/x/sys v0.8.0
|
|
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
nhooyr.io/websocket v1.8.7 // indirect
|
|
)
|
|
|
|
replace github.com/gin-gonic/gin => github.com/gin-gonic/gin v1.7.4
|