2023-07-05 01:31:59 +03:00
|
|
|
module github.com/xorcare/testing-go-code-with-postgres
|
|
|
|
|
2024-02-08 22:27:20 +03:00
|
|
|
go 1.22.0
|
2023-07-05 01:31:59 +03:00
|
|
|
|
|
|
|
require (
|
2024-01-27 00:20:46 +03:00
|
|
|
github.com/google/uuid v1.6.0
|
2024-05-27 23:59:58 +00:00
|
|
|
github.com/jackc/pgx/v5 v5.6.0
|
2024-03-05 18:10:40 +00:00
|
|
|
github.com/stretchr/testify v1.9.0
|
2023-07-05 01:31:59 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
|
|
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
|
2024-01-27 00:21:02 +03:00
|
|
|
github.com/jackc/puddle/v2 v2.2.1 // indirect
|
2023-07-05 01:31:59 +03:00
|
|
|
github.com/kr/text v0.2.0 // indirect
|
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
|
|
github.com/rogpeppe/go-internal v1.10.0 // indirect
|
2024-01-27 00:21:02 +03:00
|
|
|
golang.org/x/crypto v0.17.0 // indirect
|
2023-07-05 01:31:59 +03:00
|
|
|
golang.org/x/sync v0.1.0 // indirect
|
2024-01-27 00:21:02 +03:00
|
|
|
golang.org/x/text v0.14.0 // indirect
|
2023-07-05 01:31:59 +03:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
|
|
)
|