-
Notifications
You must be signed in to change notification settings - Fork 15
/
go.mod
27 lines (23 loc) · 884 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
module github.com/codecrafters-io/redis-tester
go 1.21
require (
github.com/codecrafters-io/tester-utils v0.2.38
github.com/go-redis/redis v6.15.9+incompatible
github.com/hdt3213/rdb v1.0.18
github.com/stretchr/testify v1.9.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/color v1.17.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/onsi/ginkgo v1.11.0 // indirect
github.com/onsi/gomega v1.8.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.25.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
// Use this to test locally
// replace github.com/codecrafters-io/tester-utils v0.2.12 => /Users/rohitpaulk/experiments/codecrafters/tester-utils