-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
23 lines (20 loc) · 776 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
module github.com/ricebin/grpc_web_proxy
go 1.21.0
require (
github.com/improbable-eng/grpc-web v0.15.0
github.com/mwitkow/grpc-proxy v0.0.0-20230212185441-f345521cb9c9
google.golang.org/grpc v1.58.3
)
require (
github.com/cenkalti/backoff/v4 v4.1.1 // indirect
github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/klauspost/compress v1.11.7 // indirect
github.com/rs/cors v1.7.0 // indirect
golang.org/x/net v0.23.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 // indirect
google.golang.org/protobuf v1.33.0 // indirect
nhooyr.io/websocket v1.8.6 // indirect
)