-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathgo.mod
More file actions
24 lines (21 loc) · 802 Bytes
/
go.mod
File metadata and controls
24 lines (21 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module github.com/beego/beego-cache/v2
go 1.18
require (
github.com/beego/beego-error/v2 v2.0.0-20230116171004-8c59c626ffeb
github.com/bits-and-blooms/bloom/v3 v3.5.0
github.com/bradfitz/gomemcache v0.0.0-20221031212613-62deef7fc822
github.com/golang/mock v1.6.0
github.com/redis/go-redis/v9 v9.0.5
github.com/ssdb/gossdb v0.0.0-20180723034631-88f6b59b84ec
github.com/stretchr/testify v1.8.4
golang.org/x/sync v0.3.0
)
require (
github.com/bits-and-blooms/bitset v1.8.0 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)