-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
27 lines (23 loc) · 829 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
module codeberg.org/louis77/pg2sqlite
go 1.20
require (
github.com/gosuri/uiprogress v0.0.1
github.com/mattn/go-sqlite3 v1.14.16
github.com/mkideal/cli v0.2.7
)
require golang.org/x/exp v0.0.0-20220303212507-bbda1eaf7a17 // indirect
require (
github.com/gosuri/uilive v0.0.4 // indirect
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.1
github.com/labstack/gommon v0.4.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.18 // indirect
github.com/mkideal/expr v0.1.0 // indirect
github.com/samber/lo v1.38.1
golang.org/x/crypto v0.8.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/term v0.8.0 // indirect
golang.org/x/text v0.9.0 // indirect
)