-
Notifications
You must be signed in to change notification settings - Fork 46
/
go.mod
30 lines (26 loc) · 950 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
29
30
module github.com/eraft-io/eraft
go 1.21
require (
github.com/syndtr/goleveldb v1.0.0
// github.com/vmware/go-pmem-transaction v0.0.0-20210401173707-6e2b76e1a20d
google.golang.org/grpc v1.46.0
google.golang.org/protobuf v1.28.0
)
require (
github.com/stretchr/testify v1.8.1
go.uber.org/zap v1.26.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db // indirect
github.com/onsi/ginkgo v1.16.5 // indirect
github.com/onsi/gomega v1.18.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.uber.org/multierr v1.10.0 // indirect
golang.org/x/net v0.0.0-20210428140749-89ef3d95e781 // indirect
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
golang.org/x/text v0.3.6 // indirect
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)