-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathgo.mod
29 lines (26 loc) · 1.08 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
module go-cache-benchmark
go 1.18
require (
github.com/dgraph-io/ristretto v0.0.3
github.com/dgryski/go-clockpro v0.0.0-20140817124034-edc6d3eeb96e
github.com/dgryski/go-s4lru v0.0.0-20150401095600-fd9b33c61bfe
github.com/dgryski/go-tinylfu v0.0.0-20210109191853-fba88f4a7f91
github.com/golang/groupcache v0.0.0-20191027212112-611e8accdfc9
github.com/hashicorp/golang-lru v0.5.1
github.com/irr123/wtfcache v0.0.1
github.com/olekukonko/tablewriter v0.0.5
github.com/pingcap/go-ycsb v0.0.0-20210129115622-04d8656123e4
github.com/qianbin/directcache v0.9.1
)
require (
github.com/cespare/xxhash v1.1.0 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/dgryski/go-metro v0.0.0-20200812162917-85c65e2d0165 // indirect
github.com/magiconair/properties v1.8.0 // indirect
github.com/mattn/go-runewidth v0.0.10 // indirect
github.com/pingcap/errors v0.11.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/stretchr/testify v1.7.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)