-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
25 lines (21 loc) · 684 Bytes
/
go.mod
File metadata and controls
25 lines (21 loc) · 684 Bytes
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
module mindsdb-go-cli
go 1.23.0
toolchain go1.24.1
require (
github.com/fatih/color v1.16.0
github.com/go-sql-driver/mysql v1.7.1
github.com/jackc/pgx/v5 v5.5.4
github.com/spf13/cobra v1.6.1
golang.org/x/term v0.33.0
)
require (
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/crypto v0.35.0 // indirect
golang.org/x/sys v0.34.0 // indirect
golang.org/x/text v0.22.0 // indirect
)