54 lines
2.2 KiB
Modula-2
54 lines
2.2 KiB
Modula-2
module git.zhangdeman.cn/zhangdeman/redis
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
git.zhangdeman.cn/zhangdeman/easymap v0.0.0-20220514080721-7713928d9258
|
|
git.zhangdeman.cn/zhangdeman/logger v0.0.0-20230212080829-b9bb99b256ae
|
|
git.zhangdeman.cn/zhangdeman/util v0.0.0-20230211164227-256094968151
|
|
github.com/gin-gonic/gin v1.8.2
|
|
github.com/go-redis/redis/v8 v8.11.5
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/stretchr/testify v1.8.1
|
|
go.uber.org/zap v1.24.0
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
)
|
|
|
|
require (
|
|
github.com/Jeffail/gabs v1.4.0 // indirect
|
|
github.com/axgle/mahonia v0.0.0-20180208002826-3358181d7394 // indirect
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/gin-contrib/sse v0.1.0 // indirect
|
|
github.com/go-ini/ini v1.67.0 // 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-redis/redis_rate/v9 v9.1.2 // indirect
|
|
github.com/goccy/go-json v0.10.0 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/leodido/go-urn v1.2.1 // indirect
|
|
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible // indirect
|
|
github.com/lestrrat-go/strftime v1.0.6 // indirect
|
|
github.com/mattn/go-isatty v0.0.17 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/spaolacci/murmur3 v1.1.0 // indirect
|
|
github.com/tidwall/gjson v1.14.4 // indirect
|
|
github.com/tidwall/match v1.1.1 // indirect
|
|
github.com/tidwall/pretty v1.2.1 // indirect
|
|
github.com/ugorji/go/codec v1.2.9 // indirect
|
|
go.uber.org/atomic v1.10.0 // indirect
|
|
go.uber.org/multierr v1.9.0 // indirect
|
|
golang.org/x/crypto v0.6.0 // indirect
|
|
golang.org/x/net v0.6.0 // indirect
|
|
golang.org/x/sys v0.5.0 // indirect
|
|
golang.org/x/text v0.7.0 // indirect
|
|
google.golang.org/protobuf v1.28.1 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|