forked from lyraproj/hiera
-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
26 lines (23 loc) · 866 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/yanndegat/hiera
require (
github.com/bmatcuk/doublestar v1.2.2
github.com/lyraproj/dgo v0.4.4
github.com/lyraproj/dgoyaml v0.4.4
github.com/lyraproj/hierasdk v0.4.4
github.com/sirupsen/logrus v1.4.2
github.com/spf13/cobra v0.0.6
github.com/stretchr/testify v1.5.1
golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527
gopkg.in/yaml.v3 v3.0.0-20200121175148-a6ecf24a6d71
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/pflag v1.0.3 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/yaml.v2 v2.2.2 // indirect
)
go 1.21