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-09-10 15:28:37 +00:00
|
|
|
github.com/golang-migrate/migrate/v4 v4.18.1
|
2024-01-27 00:20:46 +03:00
|
|
|
github.com/google/uuid v1.6.0
|
2024-09-16 23:26:31 +00:00
|
|
|
github.com/jackc/pgx/v5 v5.7.1
|
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
|
2024-03-05 21:09:21 +03:00
|
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
2023-07-05 01:31:59 +03:00
|
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
2024-09-09 23:17:01 +00:00
|
|
|
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
|
2024-09-16 23:26:31 +00:00
|
|
|
github.com/jackc/puddle/v2 v2.2.2 // indirect
|
2024-03-05 21:09:21 +03:00
|
|
|
github.com/lib/pq v1.10.9 // indirect
|
2023-07-05 01:31:59 +03:00
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
2024-03-05 21:09:21 +03:00
|
|
|
go.uber.org/atomic v1.7.0 // indirect
|
2024-09-10 15:28:37 +00:00
|
|
|
golang.org/x/crypto v0.27.0 // indirect
|
|
|
|
golang.org/x/sync v0.8.0 // indirect
|
|
|
|
golang.org/x/text v0.18.0 // indirect
|
2023-07-05 01:31:59 +03:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
|
|
)
|