-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgo.mod
27 lines (24 loc) · 953 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/bwplotka/mimic
go 1.17
require (
github.com/efficientgo/tools/core v0.0.0-20220225185207-fe763185946b
github.com/ghodss/yaml v1.0.0
github.com/go-kit/log v0.2.1
github.com/rodaine/hclencoder v0.0.1
gopkg.in/alecthomas/kingpin.v2 v2.2.6
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-logfmt/logfmt v0.5.1 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/testify v1.7.4 // indirect; what?
go.uber.org/goleak v1.1.10 // indirect
golang.org/x/lint v0.0.0-20190930215403-16217165b5de // indirect
golang.org/x/tools v0.0.0-20191108193012-7d206e10da11 // indirect
gopkg.in/yaml.v2 v2.2.2 // indirect
)