-
Notifications
You must be signed in to change notification settings - Fork 45
/
go.mod
27 lines (24 loc) · 974 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/oligot/go-mod-upgrade
go 1.18
require (
github.com/AlecAivazis/survey/v2 v2.3.2
github.com/Masterminds/semver/v3 v3.1.1
github.com/apex/log v1.9.0
github.com/briandowns/spinner v1.16.0
github.com/fatih/color v1.13.0
github.com/urfave/cli/v2 v2.3.0
golang.org/x/mod v0.14.0
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/mattn/go-colorable v0.1.9 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
github.com/pkg/errors v0.8.1 // indirect
github.com/russross/blackfriday/v2 v2.0.1 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
golang.org/x/term v0.0.0-20210503060354-a79de5458b56 // indirect
golang.org/x/text v0.3.3 // indirect
)