-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathgo.mod
More file actions
23 lines (20 loc) · 788 Bytes
/
go.mod
File metadata and controls
23 lines (20 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module github.com/desertbit/grumble
go 1.25.0
require (
github.com/desertbit/closer/v4 v4.0.2
github.com/desertbit/columnize v2.1.0+incompatible
github.com/desertbit/go-shlex v0.1.1
github.com/desertbit/readline v1.5.1
github.com/fatih/color v1.19.0
gopkg.in/AlecAivazis/survey.v1 v1.8.8
)
require (
github.com/Netflix/go-expect v0.0.0-20190729225929-0e00d9168667 // indirect
github.com/hinshun/vt10x v0.0.0-20180809195222-d55458df857c // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/kr/pty v1.1.8 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
golang.org/x/sys v0.42.0 // indirect
)