-
Notifications
You must be signed in to change notification settings - Fork 55
/
go.mod
43 lines (40 loc) · 1.56 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
module github.com/muonsoft/openapi-mock
go 1.18
require (
github.com/clbanning/mxj v1.8.4
github.com/getkin/kin-openapi v0.100.0
github.com/go-ozzo/ozzo-routing/v2 v2.4.0
github.com/gofrs/uuid v4.2.0+incompatible
github.com/gorilla/handlers v1.5.1
github.com/kelseyhightower/envconfig v1.4.0
github.com/lucasjones/reggen v0.0.0-20200904144131-37ba4fa293bb
github.com/muonsoft/api-testing v0.3.1
github.com/muonsoft/language v0.3.0
github.com/muonsoft/validation v0.15.0
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.9.0
github.com/spf13/cobra v1.5.0
github.com/stretchr/testify v1.8.0
github.com/unrolled/secure v1.13.0
golang.org/x/text v0.8.0
gopkg.in/yaml.v3 v3.0.1
syreclabs.com/go/faker v1.2.3
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/go-openapi/jsonpointer v0.19.5 // indirect
github.com/go-openapi/swag v0.22.3 // indirect
github.com/golang/gddo v0.0.0-20210115222349-20d68f94ee1f // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/invopop/yaml v0.2.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/objx v0.4.0 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
golang.org/x/net v0.0.0-20211020060615-d418f374d309 // indirect
golang.org/x/sys v0.5.0 // indirect
gopkg.in/xmlpath.v2 v2.0.0-20150820204837-860cbeca3ebc // indirect
)