-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathgo.mod
More file actions
25 lines (22 loc) · 744 Bytes
/
go.mod
File metadata and controls
25 lines (22 loc) · 744 Bytes
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
module github.com/mr-karan/barreldb
go 1.19
require (
github.com/knadh/koanf v1.4.4
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.8.0
github.com/tidwall/redcon v1.6.0
github.com/zerodha/logf v0.5.5
golang.org/x/sys v0.3.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/tidwall/btree v1.6.0 // indirect
github.com/tidwall/match v1.1.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)