mirror of
https://github.com/gookit/cache.git
synced 2026-04-22 15:37:07 +08:00
50 lines
1.8 KiB
Modula-2
50 lines
1.8 KiB
Modula-2
module github.com/gookit/cache
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/bluele/gcache v0.0.2
|
|
github.com/bradfitz/gomemcache v0.0.0-20230124162541-5f7a7d875746
|
|
github.com/dgraph-io/badger v1.6.2
|
|
github.com/gomodule/redigo v1.9.2
|
|
github.com/gookit/goutil v0.6.16
|
|
github.com/gookit/gsr v0.1.0
|
|
github.com/patrickmn/go-cache v2.1.0+incompatible
|
|
github.com/redis/go-redis/v9 v9.6.1
|
|
github.com/stretchr/testify v1.8.4
|
|
github.com/syndtr/goleveldb v1.0.0
|
|
github.com/tidwall/buntdb v1.3.2
|
|
go.etcd.io/bbolt v1.3.10
|
|
)
|
|
|
|
require (
|
|
github.com/AndreasBriese/bbloom v0.0.0-20190825152654-46b345b51c96 // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/dgraph-io/ristretto v0.1.1 // indirect
|
|
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/golang/glog v1.0.0 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/golang/snappy v0.0.4 // indirect
|
|
github.com/gookit/color v1.5.4 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/tidwall/btree v1.6.0 // indirect
|
|
github.com/tidwall/gjson v1.14.4 // indirect
|
|
github.com/tidwall/grect v0.1.4 // indirect
|
|
github.com/tidwall/match v1.1.1 // indirect
|
|
github.com/tidwall/pretty v1.2.1 // indirect
|
|
github.com/tidwall/rtred v0.1.2 // indirect
|
|
github.com/tidwall/tinyqueue v0.1.1 // indirect
|
|
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
|
|
golang.org/x/net v0.23.0 // indirect
|
|
golang.org/x/sys v0.22.0 // indirect
|
|
golang.org/x/text v0.16.0 // indirect
|
|
google.golang.org/protobuf v1.33.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
exclude github.com/gomodule/redigo v2.0.0+incompatible
|