-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathgo.mod
25 lines (22 loc) · 903 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
module github.com/easyCZ/grpc-web-hacker-news
go 1.17
require (
github.com/go-chi/chi/v5 v5.0.7
github.com/golang/protobuf v1.5.2
github.com/improbable-eng/grpc-web v0.15.0
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd
google.golang.org/grpc v1.44.0
gopkg.in/zabawaba99/firego.v1 v1.0.0-20190331000051-3bcc4b6a4599
)
require (
github.com/cenkalti/backoff/v4 v4.1.2 // indirect
github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect
github.com/klauspost/compress v1.14.2 // indirect
github.com/rs/cors v1.8.2 // indirect
github.com/zabawaba99/firego v0.0.0-20190331000051-3bcc4b6a4599 // indirect
golang.org/x/sys v0.0.0-20220209214540-3681064d5158 // indirect
golang.org/x/text v0.3.7 // indirect
google.golang.org/genproto v0.0.0-20220211171837-173942840c17 // indirect
google.golang.org/protobuf v1.27.1 // indirect
nhooyr.io/websocket v1.8.7 // indirect
)