-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathgo.mod
More file actions
27 lines (24 loc) · 904 Bytes
/
go.mod
File metadata and controls
27 lines (24 loc) · 904 Bytes
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/derision-test/go-mockgen/v2
go 1.24
require (
github.com/alecthomas/kingpin v2.2.6+incompatible
github.com/dave/jennifer v1.5.0
github.com/dustin/go-humanize v1.0.0
github.com/mitchellh/go-wordwrap v1.0.1
github.com/onsi/gomega v1.19.0
github.com/stretchr/testify v1.7.1
golang.org/x/tools v0.18.0
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
)
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/kr/pretty v0.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/mod v0.15.0 // indirect
golang.org/x/net v0.21.0 // indirect
golang.org/x/text v0.14.0 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)