-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathgo.mod
45 lines (43 loc) · 1.66 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
43
44
45
module github.com/aristat/golang-example-app
require (
github.com/99designs/gqlgen v0.12.2
github.com/agnivade/levenshtein v1.1.0 // indirect
github.com/casbin/casbin v1.9.1
github.com/go-chi/chi/v5 v5.0.7
github.com/go-session/session v3.1.2+incompatible
github.com/golang-jwt/jwt v3.2.2+incompatible
github.com/google/wire v0.5.0
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/jinzhu/gorm v1.9.10
github.com/kr/text v0.2.0 // indirect
github.com/lib/pq v1.10.4
github.com/mitchellh/mapstructure v1.4.1
github.com/nats-io/nats-streaming-server v0.24.5 // indirect
github.com/nats-io/nats.go v1.14.0
github.com/nats-io/stan.go v0.10.2
github.com/pkg/errors v0.9.1
github.com/processout/grpc-go-pool v1.2.1
github.com/riandyrn/otelchi v0.4.0
github.com/rubenv/sql-migrate v1.1.1
github.com/selvatico/go-mocket v1.0.7
github.com/spf13/cast v1.3.1
github.com/spf13/cobra v1.2.1
github.com/spf13/viper v1.8.1
github.com/stretchr/testify v1.7.1
github.com/vektah/gqlparser/v2 v2.0.1
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.32.0
go.opentelemetry.io/otel v1.7.0
go.opentelemetry.io/otel/exporters/jaeger v1.7.0
go.opentelemetry.io/otel/sdk v1.7.0
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/automaxprocs v1.2.0
go.uber.org/zap v1.17.0
golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd
golang.org/x/sys v0.0.0-20220429233432-b5fbb4746d32 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f // indirect
google.golang.org/genproto v0.0.0-20210821163610-241b8fcbd6c8 // indirect
google.golang.org/grpc v1.46.0
google.golang.org/protobuf v1.27.1
)
go 1.13