-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
29 lines (26 loc) · 987 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
module github.com/masamichhhhi/ent-grpc-example
go 1.17
require (
entgo.io/contrib v0.1.0
entgo.io/ent v0.9.1
github.com/go-sql-driver/mysql v1.6.0
google.golang.org/grpc v1.36.0
google.golang.org/protobuf v1.27.1
)
require (
github.com/go-openapi/inflect v0.19.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/jhump/protoreflect v1.10.1 // indirect
github.com/mattn/go-sqlite3 v1.14.9
github.com/mitchellh/mapstructure v1.4.2 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.7.0 // indirect
golang.org/x/mod v0.4.2 // indirect
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 // indirect
golang.org/x/sys v0.0.0-20210510120138-977fb7262007 // indirect
golang.org/x/text v0.3.5 // indirect
golang.org/x/tools v0.1.5 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb // indirect
)