-
Notifications
You must be signed in to change notification settings - Fork 13
/
go.mod
53 lines (50 loc) · 2.13 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
46
47
48
49
50
51
52
53
module github.com/hack-fan/skadi
go 1.19
require (
github.com/go-playground/validator v9.31.0+incompatible
github.com/go-redis/redis/v8 v8.11.5
github.com/go-resty/resty/v2 v2.7.0
github.com/hack-fan/config v0.0.0-20200528030741-0a9be90586b6
github.com/hack-fan/jq v0.5.4
github.com/hack-fan/x/rdb v0.0.0-20220710091142-d0aa872f816c
github.com/hack-fan/x/xdb v0.0.0-20220710091142-d0aa872f816c
github.com/hack-fan/x/xecho v0.0.0-20220710091142-d0aa872f816c
github.com/hack-fan/x/xerr v0.0.0-20220710091142-d0aa872f816c
github.com/hack-fan/x/xlog v0.0.0-20220710091142-d0aa872f816c
github.com/hack-fan/x/xtype v0.0.0-20220710091142-d0aa872f816c
github.com/iancoleman/strcase v0.2.0 // indirect
github.com/labstack/echo/v4 v4.10.0
github.com/leodido/go-urn v1.2.1 // indirect
github.com/rs/xid v1.4.0
github.com/vmihailenco/msgpack/v5 v5.3.5
go.uber.org/zap v1.24.0
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gorm.io/gorm v1.24.3
)
require (
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-playground/validator/v10 v10.11.2 // indirect
github.com/go-sql-driver/mysql v1.7.0 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/labstack/gommon v0.4.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.9.0 // indirect
golang.org/x/crypto v0.5.0 // indirect
golang.org/x/net v0.5.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.4.0 // indirect
golang.org/x/text v0.6.0 // indirect
golang.org/x/time v0.3.0 // indirect
gorm.io/driver/mysql v1.4.5 // indirect
)