-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
23 lines (20 loc) · 686 Bytes
/
Copy pathgo.mod
File metadata and controls
23 lines (20 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module github.com/navgeet/raft
go 1.19
require (
github.com/fortytw2/leaktest v1.3.0
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.8.1
golang.org/x/exp v0.0.0-20230108222341-4b8118a2686a
google.golang.org/grpc v1.51.0
google.golang.org/protobuf v1.30.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
golang.org/x/sys v0.1.0 // indirect
golang.org/x/text v0.4.0 // indirect
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)