-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathgo.mod
More file actions
22 lines (19 loc) · 722 Bytes
/
go.mod
File metadata and controls
22 lines (19 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module github.com/RediSearch/RediSearchBenchmark
go 1.18
require (
github.com/HdrHistogram/hdrhistogram-go v1.1.2
github.com/cenkalti/backoff/v4 v4.1.3
github.com/elastic/go-elasticsearch/v8 v8.4.0
github.com/go-redis/redis/v9 v9.0.0-beta.2
github.com/stretchr/testify v1.7.0
golang.org/x/exp v0.0.0-20220916125017-b168a2c6b86b
)
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/elastic/elastic-transport-go/v8 v8.1.0 // indirect
github.com/onsi/gomega v1.20.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)