|
1 | 1 | module github.com/ydataai/authentication-service |
2 | 2 |
|
3 | | -go 1.22 |
4 | | - |
5 | | -toolchain go1.22.1 |
| 3 | +go 1.25.7 |
6 | 4 |
|
7 | 5 | require ( |
8 | | - github.com/coreos/go-oidc/v3 v3.10.0 |
9 | | - github.com/gin-gonic/gin v1.9.1 |
10 | | - github.com/golang-jwt/jwt/v5 v5.2.1 |
| 6 | + github.com/coreos/go-oidc/v3 v3.17.0 |
| 7 | + github.com/gin-gonic/gin v1.11.0 |
| 8 | + github.com/golang-jwt/jwt/v5 v5.3.1 |
11 | 9 | github.com/kelseyhightower/envconfig v1.4.0 |
12 | | - github.com/stretchr/testify v1.9.0 |
13 | | - github.com/ydataai/go-core v0.15.1 |
14 | | - golang.org/x/oauth2 v0.18.0 |
| 10 | + github.com/stretchr/testify v1.11.1 |
| 11 | + github.com/ydataai/go-core v0.15.6 |
| 12 | + golang.org/x/oauth2 v0.34.0 |
15 | 13 | ) |
16 | 14 |
|
17 | 15 | require ( |
18 | | - github.com/bytedance/sonic v1.11.3 // indirect |
19 | | - github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect |
20 | | - github.com/chenzhuoyu/iasm v0.9.1 // indirect |
| 16 | + github.com/bytedance/gopkg v0.1.3 // indirect |
| 17 | + github.com/bytedance/sonic v1.15.0 // indirect |
| 18 | + github.com/bytedance/sonic/loader v0.5.0 // indirect |
| 19 | + github.com/cloudwego/base64x v0.1.6 // indirect |
21 | 20 | github.com/davecgh/go-spew v1.1.1 // indirect |
22 | | - github.com/gabriel-vasile/mimetype v1.4.3 // indirect |
23 | | - github.com/gin-contrib/sse v0.1.0 // indirect |
24 | | - github.com/go-jose/go-jose/v4 v4.0.1 // indirect |
| 21 | + github.com/gabriel-vasile/mimetype v1.4.13 // indirect |
| 22 | + github.com/gin-contrib/sse v1.1.0 // indirect |
| 23 | + github.com/go-jose/go-jose/v4 v4.1.3 // indirect |
25 | 24 | github.com/go-playground/locales v0.14.1 // indirect |
26 | 25 | github.com/go-playground/universal-translator v0.18.1 // indirect |
27 | | - github.com/go-playground/validator/v10 v10.19.0 // indirect |
28 | | - github.com/goccy/go-json v0.10.2 // indirect |
29 | | - github.com/golang/protobuf v1.5.4 // indirect |
| 26 | + github.com/go-playground/validator/v10 v10.30.1 // indirect |
| 27 | + github.com/goccy/go-json v0.10.5 // indirect |
| 28 | + github.com/goccy/go-yaml v1.19.2 // indirect |
30 | 29 | github.com/google/uuid v1.6.0 // indirect |
31 | 30 | github.com/json-iterator/go v1.1.12 // indirect |
32 | | - github.com/klauspost/cpuid/v2 v2.2.7 // indirect |
| 31 | + github.com/klauspost/cpuid/v2 v2.3.0 // indirect |
33 | 32 | github.com/leodido/go-urn v1.4.0 // indirect |
34 | 33 | github.com/mattn/go-isatty v0.0.20 // indirect |
35 | 34 | github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
36 | | - github.com/modern-go/reflect2 v1.0.2 // indirect |
37 | | - github.com/pelletier/go-toml/v2 v2.2.0 // indirect |
| 35 | + github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect |
| 36 | + github.com/pelletier/go-toml/v2 v2.2.4 // indirect |
38 | 37 | github.com/pmezard/go-difflib v1.0.0 // indirect |
39 | | - github.com/sirupsen/logrus v1.9.3 // indirect |
| 38 | + github.com/quic-go/qpack v0.6.0 // indirect |
| 39 | + github.com/quic-go/quic-go v0.59.0 // indirect |
| 40 | + github.com/sirupsen/logrus v1.9.4 // indirect |
40 | 41 | github.com/twitchyliquid64/golang-asm v0.15.1 // indirect |
41 | | - github.com/ugorji/go/codec v1.2.12 // indirect |
42 | | - golang.org/x/arch v0.7.0 // indirect |
43 | | - golang.org/x/crypto v0.21.0 // indirect |
44 | | - golang.org/x/net v0.22.0 // indirect |
45 | | - golang.org/x/sys v0.18.0 // indirect |
46 | | - golang.org/x/text v0.14.0 // indirect |
47 | | - google.golang.org/appengine v1.6.8 // indirect |
48 | | - google.golang.org/protobuf v1.33.0 // indirect |
| 42 | + github.com/ugorji/go/codec v1.3.1 // indirect |
| 43 | + golang.org/x/arch v0.23.0 // indirect |
| 44 | + golang.org/x/crypto v0.47.0 // indirect |
| 45 | + golang.org/x/net v0.49.0 // indirect |
| 46 | + golang.org/x/sys v0.40.0 // indirect |
| 47 | + golang.org/x/text v0.33.0 // indirect |
| 48 | + google.golang.org/protobuf v1.36.11 // indirect |
49 | 49 | gopkg.in/yaml.v3 v3.0.1 // indirect |
50 | 50 | ) |
0 commit comments