-
Notifications
You must be signed in to change notification settings - Fork 141
Expand file tree
/
Copy pathgo.mod
More file actions
24 lines (20 loc) · 693 Bytes
/
go.mod
File metadata and controls
24 lines (20 loc) · 693 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
module github.com/otoolep/hraftd
go 1.21
toolchain go1.23.3
require (
github.com/hashicorp/raft v1.7.0
github.com/hashicorp/raft-boltdb/v2 v2.3.0
)
require (
github.com/armon/go-metrics v0.4.1 // indirect
github.com/boltdb/bolt v1.3.1 // indirect
github.com/fatih/color v1.17.0 // indirect
github.com/hashicorp/go-hclog v1.6.3 // indirect
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
github.com/hashicorp/go-msgpack/v2 v2.1.2 // indirect
github.com/hashicorp/golang-lru v1.0.2 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
go.etcd.io/bbolt v1.3.10 // indirect
golang.org/x/sys v0.21.0 // indirect
)