-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
42 lines (39 loc) · 1.56 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
38
39
40
41
42
module go-grpc-example
go 1.18
require (
github.com/golang-migrate/migrate/v4 v4.15.2
github.com/google/uuid v1.3.0
github.com/grpc-ecosystem/grpc-gateway/v2 v2.12.0
github.com/hashicorp/go-multierror v1.1.1
github.com/lib/pq v1.10.7
github.com/newrelic/go-agent/v3 v3.18.2
github.com/newrelic/go-agent/v3/integrations/nrgrpc v1.3.2
github.com/newrelic/go-agent/v3/integrations/nrpkgerrors v1.1.0
github.com/pkg/errors v0.9.1
github.com/rocketlaunchr/dbq/v2 v2.6.0
github.com/sirupsen/logrus v1.8.1
github.com/spf13/cobra v1.6.0
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
google.golang.org/genproto v0.0.0-20221014213838-99cd37c6964a
google.golang.org/grpc v1.50.1
google.golang.org/protobuf v1.28.1
gorm.io/gorm v1.24.0
)
require (
cloud.google.com/go v0.99.0 // indirect
github.com/cenkalti/backoff/v4 v4.1.2 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.4 // indirect
github.com/mitchellh/mapstructure v1.1.2 // indirect
github.com/rocketlaunchr/mysql-go v1.1.3 // indirect
github.com/spf13/pflag v1.0.5 // indirect
go.uber.org/atomic v1.7.0 // indirect
golang.org/x/net v0.0.0-20220909164309-bea034e7d591 // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect
golang.org/x/text v0.3.8 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
)