forked from infobloxopen/atlas-gentool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
69 lines (66 loc) · 3.14 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
module github.com/infobloxopen/atlas-gentool
go 1.19
require (
github.com/chrusty/protoc-gen-jsonschema v0.0.0-20220629194945-fb6570fd61fb
github.com/envoyproxy/protoc-gen-validate v0.6.7
github.com/ghodss/yaml v1.0.0
github.com/go-openapi/spec v0.20.7
github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.2
github.com/infobloxopen/atlas-app-toolkit v1.2.2-0.20220721202134-28480c4993fc
github.com/infobloxopen/protoc-gen-atlas-query-validate v0.5.2
github.com/infobloxopen/protoc-gen-atlas-validate v1.0.1
github.com/infobloxopen/protoc-gen-gorm v1.1.3-0.20230726085533-76a99c197982
github.com/infobloxopen/protoc-gen-preprocess v1.0.1
github.com/mwitkow/go-proto-validators v0.3.2
github.com/pseudomuto/protoc-gen-doc v1.5.1
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.2.0
google.golang.org/protobuf v1.28.1
)
require (
github.com/Masterminds/semver v1.4.2 // indirect
github.com/Masterminds/sprig v2.15.0+incompatible // indirect
github.com/alecthomas/jsonschema v0.0.0-20210918223802-a1d3f4b43d7b // indirect
github.com/aokoli/goutils v1.0.1 // indirect
github.com/fatih/camelcase v1.0.0 // indirect
github.com/go-openapi/jsonpointer v0.19.5 // indirect
github.com/go-openapi/jsonreference v0.20.0 // indirect
github.com/go-openapi/swag v0.19.15 // indirect
github.com/go-sql-driver/mysql v1.6.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/glog v1.0.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/uuid v1.2.0 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
github.com/huandu/xstrings v1.0.0 // indirect
github.com/iancoleman/orderedmap v0.2.0 // indirect
github.com/iancoleman/strcase v0.2.0 // indirect
github.com/imdario/mergo v0.3.4 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.4 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/lyft/protoc-gen-star v0.6.0 // indirect
github.com/magefile/mage v1.10.0 // indirect
github.com/mailru/easyjson v0.7.6 // indirect
github.com/pkg/errors v0.8.1 // indirect
github.com/pseudomuto/protokit v0.2.0 // indirect
github.com/sirupsen/logrus v1.8.0 // indirect
github.com/spf13/afero v1.6.0 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20190809123943-df4f5c81cb3b // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
golang.org/x/crypto v0.0.0-20220214200702-86341886e292 // indirect
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
golang.org/x/mod v0.5.0 // indirect
golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e // indirect
golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/tools v0.1.5 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/genproto v0.0.0-20220805133916-01dd62135a58 // indirect
google.golang.org/grpc v1.48.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gorm.io/datatypes v1.0.6 // indirect
gorm.io/driver/mysql v1.3.2 // indirect
gorm.io/gorm v1.23.2 // indirect
)