-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c5349b0
commit 1f46834
Showing
4 changed files
with
38 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,44 @@ | ||
module github.com/muonsoft/openapi-mock | ||
|
||
go 1.16 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/clbanning/mxj v1.8.4 | ||
github.com/felixge/httpsnoop v1.0.2 // indirect | ||
github.com/getkin/kin-openapi v0.63.0 | ||
github.com/go-openapi/swag v0.19.15 // indirect | ||
github.com/go-ozzo/ozzo-routing/v2 v2.3.0 | ||
github.com/gofrs/uuid v4.0.0+incompatible | ||
github.com/golang/gddo v0.0.0-20210115222349-20d68f94ee1f // indirect | ||
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/mailru/easyjson v0.7.7 // indirect | ||
github.com/muonsoft/api-testing v0.2.0 | ||
github.com/muonsoft/language v0.3.0 | ||
github.com/muonsoft/validation v0.4.0 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/spf13/cobra v1.1.3 | ||
github.com/stretchr/objx v0.3.0 // indirect | ||
github.com/stretchr/testify v1.6.1 | ||
github.com/stretchr/testify v1.8.0 | ||
github.com/unrolled/secure v1.0.9 | ||
golang.org/x/sys v0.0.0-20210616094352-59db8d763f22 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b | ||
golang.org/x/text v0.3.7 | ||
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.2 // indirect | ||
github.com/ghodss/yaml v1.0.0 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.5 // indirect | ||
github.com/go-openapi/swag v0.19.15 // indirect | ||
github.com/golang/gddo v0.0.0-20210115222349-20d68f94ee1f // indirect | ||
github.com/inconshreveable/mousetrap v1.0.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-20200520182314-0ba52f642ac2 // indirect | ||
golang.org/x/sys v0.0.0-20210616094352-59db8d763f22 // indirect | ||
gopkg.in/xmlpath.v2 v2.0.0-20150820204837-860cbeca3ebc // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters