-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
28 lines (25 loc) · 932 Bytes
/
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
module github.com/ivanitskiy/grpc-demo-go
go 1.20
require (
github.com/envoyproxy/protoc-gen-validate v0.10.1
github.com/grpc-ecosystem/grpc-gateway/v2 v2.15.2
google.golang.org/genproto v0.0.0-20230223222841-637eb2293923
google.golang.org/grpc v1.53.0
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.3.0
google.golang.org/protobuf v1.30.0
)
require (
github.com/golang/glog v1.0.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/iancoleman/strcase v0.2.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/lyft/protoc-gen-star/v2 v2.0.1 // indirect
github.com/spf13/afero v1.3.3 // indirect
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
golang.org/x/mod v0.9.0 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/text v0.8.0 // indirect
golang.org/x/tools v0.7.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)