-
Notifications
You must be signed in to change notification settings - Fork 2
/
go.mod
31 lines (28 loc) · 966 Bytes
/
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
module pgii
go 1.19
require (
github.com/c-bata/go-prompt v0.2.6
github.com/fatih/color v1.14.1
github.com/jedib0t/go-pretty/v6 v6.4.4
github.com/pierrec/lz4/v4 v4.1.17
github.com/spf13/cast v1.5.0
github.com/spf13/pflag v1.0.5
gorm.io/driver/postgres v1.4.8
gorm.io/gorm v1.24.5
)
require (
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/pgx/v5 v5.3.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.18 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/mattn/go-tty v0.0.4 // indirect
github.com/pkg/term v1.2.0-beta.2 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
golang.org/x/crypto v0.6.0 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/text v0.7.0 // indirect
)