-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgo.mod
More file actions
30 lines (28 loc) · 1.09 KB
/
go.mod
File metadata and controls
30 lines (28 loc) · 1.09 KB
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
module github.com/eran-levy/tokenizer-gophercon
go 1.15
require (
github.com/gin-contrib/pprof v1.3.0
github.com/gin-contrib/timeout v0.0.1
github.com/gin-gonic/gin v1.7.7
github.com/go-redis/redis/v8 v8.4.11
github.com/go-sql-driver/mysql v1.5.0
github.com/golang/mock v1.4.4
github.com/golang/protobuf v1.4.3
github.com/google/uuid v1.2.0
github.com/hashicorp/golang-lru v0.5.1
github.com/pkg/errors v0.9.1
github.com/spf13/viper v1.7.1
github.com/stretchr/testify v1.6.1
go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin v0.16.0
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.16.0
go.opentelemetry.io/contrib/instrumentation/host v0.16.0
go.opentelemetry.io/contrib/instrumentation/runtime v0.16.0
go.opentelemetry.io/otel v0.16.0
go.opentelemetry.io/otel/exporters/metric/prometheus v0.16.0
go.opentelemetry.io/otel/exporters/trace/jaeger v0.16.0
go.opentelemetry.io/otel/sdk v0.16.0
go.uber.org/zap v1.13.0
google.golang.org/grpc v1.34.0
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0
google.golang.org/protobuf v1.25.0
)