forked from Azure/azure-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
39 lines (36 loc) · 1.3 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
35
36
37
38
39
module github.com/azure/azure-dev
go 1.18
require (
github.com/AlecAivazis/survey/v2 v2.3.2
github.com/blang/semver/v4 v4.0.0
github.com/drone/envsubst v1.0.3
github.com/fatih/color v1.13.0
github.com/joho/godotenv v1.4.0
github.com/magefile/mage v1.12.1
github.com/mattn/go-isatty v0.0.14
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b
github.com/otiai10/copy v1.7.0
github.com/pbnj/go-open v0.1.1
github.com/sethvargo/go-retry v0.2.3
github.com/spf13/cobra v1.3.0
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.7.0
github.com/theckman/yacspin v0.13.12
go.uber.org/multierr v1.8.0
golang.org/x/exp v0.0.0-20220428152302-39d4317da171
golang.org/x/sys v0.0.0-20211205182925-97ca703d548d
gopkg.in/yaml.v3 v3.0.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/pkg/errors v0.8.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
go.uber.org/atomic v1.9.0 // indirect
golang.org/x/term v0.0.0-20210503060354-a79de5458b56 // indirect
golang.org/x/text v0.3.7 // indirect
)