46 lines
1.9 KiB
Modula-2
46 lines
1.9 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-20220612104513-3f63f6c673f5
|
|
git.zhangdeman.cn/zhangdeman/util v0.0.0-20220609072516-022a755fdf2f
|
|
github.com/gin-gonic/gin v1.8.1
|
|
github.com/go-redis/redis/v8 v8.11.5
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/stretchr/testify v1.7.1
|
|
go.uber.org/zap v1.21.0
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
)
|
|
|
|
require (
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/gin-contrib/sse v0.1.0 // indirect
|
|
github.com/go-playground/locales v0.14.0 // indirect
|
|
github.com/go-playground/universal-translator v0.18.0 // indirect
|
|
github.com/go-playground/validator/v10 v10.10.0 // indirect
|
|
github.com/goccy/go-json v0.9.7 // 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.14 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.0.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/spaolacci/murmur3 v1.1.0 // indirect
|
|
github.com/ugorji/go/codec v1.2.7 // indirect
|
|
go.uber.org/atomic v1.7.0 // indirect
|
|
go.uber.org/multierr v1.6.0 // indirect
|
|
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
|
|
golang.org/x/net v0.0.0-20210428140749-89ef3d95e781 // indirect
|
|
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
|
|
golang.org/x/text v0.3.6 // indirect
|
|
google.golang.org/protobuf v1.28.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
|
)
|