-
Notifications
You must be signed in to change notification settings - Fork 11
/
go.mod
26 lines (23 loc) · 909 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
module github.com/future-architect/tftarget
go 1.20
require (
github.com/briandowns/spinner v1.23.0
github.com/google/go-cmp v0.5.9
github.com/gookit/color v1.5.3
github.com/orangekame3/survey v0.0.0-20230324163402-97bfc394a01c
github.com/spf13/cobra v1.6.1
golang.org/x/exp v0.0.0-20230321023759-10a507213a29
)
require (
github.com/fatih/color v1.7.0 // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/mattn/go-colorable v0.1.2 // indirect
github.com/mattn/go-isatty v0.0.8 // indirect
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/term v0.1.0 // indirect
golang.org/x/text v0.4.0 // indirect
)