-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgo.mod
26 lines (23 loc) · 996 Bytes
/
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
module github.com/xd-deng/rediseen
go 1.18
require (
github.com/alicebob/miniredis v2.5.0+incompatible
github.com/go-redis/redis/v8 v8.0.0-beta.6
github.com/spf13/cobra v1.0.0
)
require (
github.com/alicebob/gopher-json v0.0.0-20180125190556-5a6b3ba71ee6 // indirect
github.com/cespare/xxhash v1.1.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200624174652-8d2f3be8b2d9 // indirect
github.com/gomodule/redigo v1.8.8 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/onsi/ginkgo v1.10.3 // indirect
github.com/onsi/gomega v1.7.1 // indirect
github.com/spf13/pflag v1.0.3 // indirect
github.com/yuin/gopher-lua v0.0.0-20190514113301-1cd887cd7036 // indirect
go.opentelemetry.io/otel v0.7.0 // indirect
golang.org/x/exp v0.0.0-20200513190911-00229845015e // indirect
golang.org/x/net v0.0.0-20191109021931-daa7c04131f5 // indirect
golang.org/x/sys v0.0.0-20191105231009-c1f44814a5cd // indirect
google.golang.org/grpc v1.30.0 // indirect
)