auth/go.mod
Ruidy 678736c6aa
chore(deps): update Go and dependencies
Bump Go version to 1.25.3 and update several dependencies:
- golang.org/x/oauth2 to v0.32.0
- cloud.google.com/go/compute/metadata to v0.9.0
- golang.org/x/crypto to v0.43.0
- golang.org/x/sync to v0.17.0
- golang.org/x/sys to v0.37.0
- golang.org/x/text to v0.30.0

This ensures compatibility and includes the latest bug fixes and
improvements.
2025-10-20 17:51:05 +02:00

21 lines
580 B
Modula-2

module github.com/rjnemo/auth
go 1.25.3
require (
github.com/go-chi/chi/v5 v5.2.3
github.com/google/uuid v1.6.0
github.com/jackc/pgx/v5 v5.7.6
golang.org/x/oauth2 v0.32.0
)
require (
cloud.google.com/go/compute/metadata v0.9.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/jackc/puddle/v2 v2.2.2 // indirect
golang.org/x/crypto v0.43.0 // indirect
golang.org/x/sync v0.17.0 // indirect
golang.org/x/sys v0.37.0 // indirect
golang.org/x/text v0.30.0 // indirect
)