-
Notifications
You must be signed in to change notification settings - Fork 8
/
go.mod
35 lines (32 loc) · 1.18 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/mikekonan/go-oas3
go 1.22
require (
github.com/ahmetb/go-linq v3.0.0+incompatible
github.com/dave/jennifer v1.7.1
github.com/getkin/kin-openapi v0.128.0
github.com/go-chi/chi/v5 v5.1.0
github.com/go-ozzo/ozzo-validation/v4 v4.3.0
github.com/goioc/di v1.7.1
github.com/google/uuid v1.6.0
github.com/heetch/confita v0.10.0
github.com/imdario/mergo v0.3.12
github.com/mikekonan/go-types/v2 v2.0.25
github.com/spf13/cast v1.7.0
github.com/tdewolff/minify/v2 v2.21.1
)
require (
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect
github.com/go-openapi/jsonpointer v0.21.0 // indirect
github.com/go-openapi/swag v0.23.0 // indirect
github.com/invopop/yaml v0.3.1 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
github.com/perimeterx/marshmallow v1.1.5 // indirect
github.com/pkg/errors v0.8.1 // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
github.com/tdewolff/parse/v2 v2.7.18 // indirect
golang.org/x/sys v0.25.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)