-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
33 lines (29 loc) · 1 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
module github.com/haroonalbar/go-grpc-graphql-microservices
go 1.23.2
require (
github.com/99designs/gqlgen v0.17.56
github.com/kelseyhightower/envconfig v1.4.0
github.com/lib/pq v1.3.0
github.com/segmentio/ksuid v1.0.2
github.com/tinrab/retry v1.0.0
golang.org/x/net v0.31.0 // indirect
golang.org/x/sys v0.27.0 // indirect
golang.org/x/text v0.20.0 // indirect
google.golang.org/grpc v1.66.0
)
require (
github.com/vektah/gqlparser/v2 v2.5.19
google.golang.org/protobuf v1.35.1
gopkg.in/olivere/elastic.v5 v5.0.86
)
require (
github.com/agnivade/levenshtein v1.1.1 // indirect
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
github.com/mailru/easyjson v0.7.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/sosodev/duration v1.3.1 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240827150818-7e3bb234dfed // indirect
)