blob: 61bab1e4c9c477eb45777c96cb202526f26ab50f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
module github.com/onsi/gomega
go 1.18
require (
github.com/golang/protobuf v1.5.2
github.com/google/go-cmp v0.5.8
github.com/onsi/ginkgo/v2 v2.1.6
golang.org/x/net v0.0.0-20220722155237-a158d28d115b
gopkg.in/yaml.v3 v3.0.1
)
require (
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
golang.org/x/text v0.3.7 // indirect
google.golang.org/protobuf v1.28.0 // indirect
)
|