-
Notifications
You must be signed in to change notification settings - Fork 7
/
go.mod
37 lines (35 loc) · 1.36 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
module github.com/zacscoding/echo-gorm-realworld-app
go 1.15
require (
github.com/alicebob/miniredis/v2 v2.17.0
github.com/containerd/containerd v1.5.2 // indirect
github.com/docker/docker v20.10.6+incompatible // indirect
github.com/go-playground/validator/v10 v10.6.1
github.com/go-redis/cache/v8 v8.4.3
github.com/go-redis/redis/v8 v8.11.4
github.com/go-sql-driver/mysql v1.6.0
github.com/go-testfixtures/testfixtures/v3 v3.6.1
github.com/golang-jwt/jwt v3.2.2+incompatible
github.com/golang-migrate/migrate v3.5.4+incompatible
github.com/google/uuid v1.2.0
github.com/gorilla/mux v1.8.0 // indirect
github.com/gosimple/slug v1.10.0
github.com/jeremywohl/flatten v1.0.1
github.com/jinzhu/copier v0.3.2
github.com/knadh/koanf v1.1.0
github.com/kr/text v0.2.0 // indirect
github.com/labstack/echo/v4 v4.5.0
github.com/morikuni/aec v1.0.0 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/ory/dockertest/v3 v3.6.5
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.7.0
github.com/tidwall/gjson v1.8.0
go.uber.org/zap v1.17.0
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect
google.golang.org/grpc v1.38.0 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gorm.io/driver/mysql v1.1.0
gorm.io/gorm v1.21.10
)