-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathgo.mod
28 lines (24 loc) · 883 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
27
28
module github.com/DiceDB/dicedb-cli
go 1.23.2
require (
github.com/c-bata/go-prompt v0.2.6
github.com/chzyer/readline v1.5.1
github.com/dicedb/dicedb-go v0.1.1
github.com/fatih/color v1.18.0
github.com/spf13/cobra v1.8.1
google.golang.org/protobuf v1.36.4
)
require (
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/mattn/go-tty v0.0.3 // indirect
github.com/pkg/term v1.2.0-beta.2 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/sys v0.25.0 // indirect
)
replace github.com/DiceDB/dicedb-go => ../dicedb-go