postgresql/go.mod

39 lines
1.5 KiB
Modula-2
Raw Permalink Normal View History

2022-10-10 03:44:02 +00:00
module git.selly.red/Selly-Modules/postgresql
2021-08-09 03:24:54 +00:00
2022-11-24 02:23:02 +00:00
go 1.19
2021-08-09 03:24:54 +00:00
require (
github.com/Masterminds/squirrel v1.5.0
2022-08-24 08:45:16 +00:00
github.com/golang-migrate/migrate/v4 v4.15.2
github.com/jackc/pgx/v4 v4.17.0
2022-10-27 03:21:15 +00:00
github.com/shopspring/decimal v1.3.1
2022-10-04 04:19:25 +00:00
github.com/volatiletech/null/v8 v8.1.2
2022-08-24 08:45:16 +00:00
github.com/volatiletech/sqlboiler/v4 v4.12.0
2022-11-24 02:23:02 +00:00
golang.org/x/text v0.3.7
)
require (
github.com/friendsofgo/errors v0.9.2 // indirect
github.com/gofrs/uuid v4.0.0+incompatible // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgconn v1.13.0 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgproto3/v2 v2.3.1 // indirect
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
github.com/jackc/pgtype v1.12.0 // indirect
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect
github.com/lib/pq v1.10.2 // indirect
github.com/volatiletech/inflect v0.0.1 // indirect
github.com/volatiletech/randomize v0.0.1 // indirect
github.com/volatiletech/strmangle v0.0.4 // indirect
go.uber.org/atomic v1.10.0 // indirect
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect
2022-12-19 04:22:38 +00:00
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
2022-10-10 05:06:42 +00:00
golang.org/x/sys v0.0.0-20221006211917-84dc82d7e875 // indirect
2022-08-24 08:45:16 +00:00
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
2021-08-09 03:24:54 +00:00
)