-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
32 lines (29 loc) · 1014 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
32
module fireman
go 1.19
require (
github.com/c-bata/go-prompt v0.2.6
github.com/pkg/sftp v1.13.6
github.com/schollz/progressbar/v3 v3.13.1
github.com/spf13/cobra v1.7.0
golang.org/x/crypto v0.12.0
gopkg.in/yaml.v3 v3.0.1
gorm.io/driver/sqlite v1.2.6
gorm.io/gorm v1.25.3
)
require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/kr/fs v0.1.0 // indirect
github.com/mattn/go-colorable v0.1.7 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/mattn/go-sqlite3 v1.14.17 // indirect
github.com/mattn/go-tty v0.0.3 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/pkg/term v1.2.0-beta.2 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/sys v0.11.0 // indirect
golang.org/x/term v0.11.0 // indirect
)