-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgo.mod
More file actions
24 lines (21 loc) · 795 Bytes
/
go.mod
File metadata and controls
24 lines (21 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module github.com/ricebin/grpc_web_proxy
go 1.21.0
toolchain go1.24.1
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.38.0 // indirect
golang.org/x/sys v0.31.0 // indirect
golang.org/x/text v0.23.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
)