Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies in go.mod for protobuf #553

Merged
merged 2 commits into from Apr 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
33 changes: 21 additions & 12 deletions go.mod
Expand Up @@ -2,24 +2,33 @@ module github.com/deepmap/oapi-codegen

require (
github.com/cyberdelia/templates v0.0.0-20141128023046-ca7fffd4298c
github.com/getkin/kin-openapi v0.87.0
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
github.com/getkin/kin-openapi v0.94.0
github.com/gin-gonic/gin v1.7.7
github.com/go-chi/chi/v5 v5.0.0
github.com/go-playground/validator/v10 v10.9.0 // indirect
github.com/go-chi/chi/v5 v5.0.7
github.com/go-openapi/swag v0.21.1 // indirect
github.com/go-playground/validator/v10 v10.10.1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/golangci/lint-1 v0.0.0-20181222135242-d2cdd8c08219
github.com/google/uuid v1.3.0
github.com/json-iterator/go v1.1.12 // indirect
github.com/labstack/echo/v4 v4.6.3
github.com/lestrrat-go/jwx v1.2.7
github.com/matryer/moq v0.2.5
github.com/labstack/echo/v4 v4.7.2
github.com/lestrrat-go/blackmagic v1.0.1 // indirect
github.com/lestrrat-go/iter v1.0.2 // indirect
github.com/lestrrat-go/jwx v1.2.23
github.com/mailru/easyjson v0.7.7 // indirect
github.com/matryer/moq v0.0.0-20190312154309-6cfb0558e1bd
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/stretchr/testify v1.7.0
github.com/ugorji/go v1.2.6 // indirect
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect
golang.org/x/tools v0.0.0-20210114065538-d78b04bdf963
google.golang.org/protobuf v1.27.1 // indirect
github.com/stretchr/testify v1.7.1
github.com/ugorji/go v1.2.7 // indirect
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 // indirect
golang.org/x/net v0.0.0-20220418201149-a630d4f3e7a2 // indirect
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect
golang.org/x/time v0.0.0-20220411224347-583f2d630306 // indirect
golang.org/x/tools v0.1.10
golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f // indirect
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/yaml.v2 v2.4.0
)

Expand Down