-
Notifications
You must be signed in to change notification settings - Fork 41
/
go.mod
37 lines (34 loc) · 1.36 KB
/
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
33
34
35
36
37
module github.com/mercari/mercari-microservices-example
go 1.18
require (
github.com/110y/run v1.0.1
github.com/go-logr/logr v1.2.3
github.com/go-logr/zapr v1.2.3
github.com/google/uuid v1.3.0
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3
github.com/lestrrat-go/jwx v1.2.25
go.uber.org/zap v1.23.0
golang.org/x/sys v0.0.0-20220915200043-7b5979e65e41
google.golang.org/genproto v0.0.0-20220916172020-2692e8806bfa
google.golang.org/grpc v1.49.0
google.golang.org/protobuf v1.28.1
)
require (
cloud.google.com/go v0.65.0 // indirect
github.com/bufbuild/connect-go v0.4.0 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.0-20210816181553-5444fa50b93d // indirect
github.com/goccy/go-json v0.9.11 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/lestrrat-go/backoff/v2 v2.0.8 // indirect
github.com/lestrrat-go/blackmagic v1.0.0 // indirect
github.com/lestrrat-go/httpcc v1.0.1 // indirect
github.com/lestrrat-go/iter v1.0.1 // indirect
github.com/lestrrat-go/option v1.0.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f // indirect
golang.org/x/net v0.0.0-20220909164309-bea034e7d591 // indirect
golang.org/x/text v0.3.7 // indirect
)