-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
27 lines (24 loc) · 896 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 github.com/kumparan/kumload
go 1.18
require (
github.com/DATA-DOG/go-sqlmock v1.4.1
github.com/cheggaaa/pb/v3 v3.0.4
github.com/jinzhu/gorm v1.9.14
github.com/sirupsen/logrus v1.2.0
github.com/spf13/cobra v1.0.0
gopkg.in/yaml.v2 v2.2.4
)
require (
github.com/VividCortex/ewma v1.1.1 // indirect
github.com/fatih/color v1.7.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect
github.com/lib/pq v1.1.1 // indirect
github.com/mattn/go-colorable v0.1.2 // indirect
github.com/mattn/go-isatty v0.0.10 // indirect
github.com/mattn/go-runewidth v0.0.7 // indirect
github.com/spf13/pflag v1.0.3 // indirect
golang.org/x/crypto v0.0.0-20191205180655-e7c4368fe9dd // indirect
golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd // indirect
)