-
Notifications
You must be signed in to change notification settings - Fork 8
/
go.mod
34 lines (29 loc) · 1.08 KB
/
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
33
34
module github.com/lets-cli/lets
go 1.22
require (
github.com/codeclysm/extract v2.2.0+incompatible
github.com/coreos/go-semver v0.3.1
github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815
github.com/fatih/color v1.15.0
github.com/sirupsen/logrus v1.9.3
github.com/spf13/cobra v1.7.0
golang.org/x/sync v0.2.0
)
require (
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
)
require (
github.com/h2non/filetype v1.1.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/juju/errors v0.0.0-20200330140219-3fe23663418f // indirect
github.com/juju/testing v0.0.0-20201216035041-2be42bba85f3 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
github.com/lithammer/dedent v1.1.0
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/exp v0.0.0-20221028150844-83b7d23a625f
golang.org/x/sys v0.6.0 // indirect
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect
gopkg.in/yaml.v3 v3.0.1
)
replace github.com/docopt/docopt-go => github.com/kindermax/docopt.go v0.7.1