forked from oapi-codegen/oapi-codegen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
35 lines (33 loc) · 1.45 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
module github.com/deepmap/oapi-codegen
require (
github.com/cyberdelia/templates v0.0.0-20141128023046-ca7fffd4298c
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.7
github.com/go-openapi/swag v0.21.1 // indirect
github.com/go-playground/validator/v10 v10.11.0 // 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.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.24
github.com/mailru/easyjson v0.7.7 // indirect
github.com/matryer/moq v0.2.7
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.1
github.com/ugorji/go v1.2.7 // indirect
golang.org/x/crypto v0.0.0-20220513210258-46612604a0f9 // indirect
golang.org/x/net v0.0.0-20220513224357-95641704303c // indirect
golang.org/x/sys v0.0.0-20220513210249-45d2b4557a2a // 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
)
go 1.16