-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathgo.mod
More file actions
21 lines (19 loc) · 825 Bytes
/
go.mod
File metadata and controls
21 lines (19 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module github.com/opendevstack/tailor
require (
github.com/alecthomas/kingpin v2.2.6+incompatible
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc // indirect
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf // indirect
github.com/fatih/color v1.7.0
github.com/ghodss/yaml v1.0.0
github.com/google/go-cmp v0.3.1
github.com/mattn/go-colorable v0.0.9 // indirect
github.com/mattn/go-isatty v0.0.3 // indirect
github.com/pmezard/go-difflib v1.0.0
github.com/stretchr/testify v1.3.0 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f
golang.org/x/crypto v0.0.0-20180820150726-614d502a4dac
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208
golang.org/x/sys v0.0.0-20190801041406-cbf593c0f2f3 // indirect
gopkg.in/yaml.v2 v2.2.1 // indirect
)
go 1.14