-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathgo.mod
More file actions
36 lines (34 loc) · 1.34 KB
/
go.mod
File metadata and controls
36 lines (34 loc) · 1.34 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
31
32
33
34
35
36
module github.com/uptrace/go-realworld-example-app
go 1.15
require (
github.com/benbjohnson/clock v1.1.0
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/go-pg/migrations/v8 v8.0.1
github.com/go-pg/pg/extra/pgdebug v0.2.0
github.com/go-pg/pg/extra/pgotel v0.2.0
github.com/go-pg/pg/v10 v10.7.7
github.com/go-pg/urlstruct v1.0.1
github.com/go-redis/cache/v8 v8.3.1
github.com/go-redis/redis/extra/redisotel v0.2.0
github.com/go-redis/redis/v8 v8.6.0
github.com/go-redis/redis_rate/v9 v9.1.1
github.com/gosimple/slug v1.9.0
github.com/magefile/mage v1.11.0 // indirect
github.com/onsi/ginkgo v1.15.0
github.com/onsi/gomega v1.10.5
github.com/sirupsen/logrus v1.8.0
github.com/uptrace/uptrace-go v0.8.2
github.com/vmihailenco/treemux v0.5.3
github.com/vmihailenco/treemux/extra/reqlog v0.5.3
github.com/vmihailenco/treemux/extra/treemuxgzip v0.5.3
github.com/vmihailenco/treemux/extra/treemuxotel v0.5.3
go.opentelemetry.io/otel v0.17.0
go.opentelemetry.io/otel/sdk v0.17.0
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83
golang.org/x/exp v0.0.0-20210220032938-85be41e4509f
golang.org/x/net v0.0.0-20210222171744-9060382bd457 // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
golang.org/x/sys v0.0.0-20210223095934-7937bea0104d // indirect
golang.org/x/text v0.3.5 // indirect
gopkg.in/yaml.v2 v2.4.0
)