-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
38 lines (34 loc) · 1.26 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
module github.com/sxwebdev/pgxgen-example
go 1.20
require (
github.com/georgysavva/scany/v2 v2.0.0
github.com/huandu/go-sqlbuilder v1.20.0
github.com/jackc/pgx/v5 v5.3.1
github.com/tkcrm/modules v0.0.0-20230604220234-54b360946ece
)
require (
github.com/aws/smithy-go v1.13.5 // indirect
github.com/goccy/go-json v0.10.0 // indirect
github.com/huandu/xstrings v1.4.0 // indirect
github.com/jackc/puddle/v2 v2.2.0 // indirect
github.com/lib/pq v1.10.2 // indirect
github.com/stretchr/objx v0.5.0 // indirect
golang.org/x/sync v0.1.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
)
require (
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
github.com/cristalhq/aconfig v0.18.3 // indirect
github.com/cristalhq/aconfig/aconfigdotenv v0.17.1 // indirect
github.com/go-ozzo/ozzo-validation/v4 v4.3.0
github.com/google/uuid v1.3.0
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/joho/godotenv v1.5.1 // indirect
github.com/pkg/errors v0.9.1
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.10.0 // indirect
go.uber.org/zap v1.24.0 // indirect
golang.org/x/crypto v0.7.0 // indirect
golang.org/x/text v0.8.0 // indirect
)