-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
32 lines (27 loc) · 972 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
29
30
31
32
module go-grpc-http
go 1.20
require (
github.com/golang/protobuf v1.5.3
github.com/jackc/pgx/v5 v5.5.0
github.com/sirupsen/logrus v1.9.3
google.golang.org/grpc v1.59.0
google.golang.org/protobuf v1.31.0
)
require (
github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.1
github.com/joho/godotenv v1.5.1
google.golang.org/genproto/googleapis/api v0.0.0-20231106174013-bbf56f31fb17
)
require google.golang.org/genproto v0.0.0-20231030173426-d783a09b4405 // indirect
require (
github.com/google/uuid v1.3.1
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/puddle/v2 v2.2.1 // indirect
golang.org/x/crypto v0.14.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sync v0.3.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20231030173426-d783a09b4405 // indirect
)