udemy-go-microservices/authentication-service/go.mod
2024-08-28 13:06:37 +02:00

22 lines
572 B
Modula-2

module authentication
go 1.22.5
require (
github.com/go-chi/chi/v5 v5.1.0
github.com/go-chi/cors v1.2.1
github.com/jackc/pgconn v1.14.3
github.com/jackc/pgx/v4 v4.18.3
golang.org/x/crypto v0.26.0
)
require (
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.3 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/pgtype v1.14.0 // indirect
golang.org/x/text v0.17.0 // indirect
)