2022-03-04 19:22:31 +01:00
|
|
|
module git.pbiernat.dev/golang/rest-api-prototype
|
|
|
|
|
|
|
|
go 1.17
|
|
|
|
|
|
|
|
require (
|
2022-03-06 01:27:28 +01:00
|
|
|
github.com/go-ozzo/ozzo-validation v3.6.0+incompatible
|
2022-03-04 19:22:31 +01:00
|
|
|
github.com/gorilla/mux v1.8.0
|
|
|
|
github.com/jackc/pgx/v4 v4.15.0
|
|
|
|
github.com/joho/godotenv v1.4.0
|
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
2022-03-06 01:27:28 +01:00
|
|
|
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect
|
2022-03-04 19:22:31 +01:00
|
|
|
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
|
|
|
|
github.com/jackc/pgconn v1.11.0 // indirect
|
|
|
|
github.com/jackc/pgio v1.0.0 // indirect
|
|
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
|
|
github.com/jackc/pgproto3/v2 v2.2.0 // indirect
|
|
|
|
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
|
|
|
|
github.com/jackc/pgtype v1.10.0 // indirect
|
|
|
|
github.com/jackc/puddle v1.2.1 // indirect
|
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
|
|
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
|
|
|
|
golang.org/x/text v0.3.6 // indirect
|
|
|
|
)
|