-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This adds the option to specify what version of the `time.Time` encoding format is desired. The default option is false, which preserves compatibility with the current dependency of `hashicorp/go-msgpack 0.5.5` in go.mod, but users of this library will probably want to override the the setting. While we're here, upgrade the go.mod file. I tested that this appears to work with Nomad. This needs to be updated and merged after hashicorp/raft#577
- Loading branch information
Christopher Swenson
committed
Oct 19, 2023
1 parent
2a80828
commit ea49498
Showing
4 changed files
with
218 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,25 @@ | ||
module github.com/hashicorp/raft-boltdb/v2 | ||
|
||
go 1.16 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/armon/go-metrics v0.0.0-20190430140413-ec5e00d3c878 | ||
github.com/armon/go-metrics v0.4.1 | ||
github.com/boltdb/bolt v1.3.1 | ||
github.com/hashicorp/go-msgpack v0.5.5 | ||
github.com/hashicorp/go-msgpack/v2 v2.1.1 | ||
github.com/hashicorp/raft v1.1.0 | ||
github.com/hashicorp/raft-boltdb v0.0.0-20210409134258-03c10cc3d4ea | ||
github.com/hashicorp/raft-boltdb v0.0.0-20230125174641-2a8082862702 | ||
go.etcd.io/bbolt v1.3.5 | ||
) | ||
|
||
require ( | ||
github.com/fatih/color v1.13.0 // indirect | ||
github.com/hashicorp/go-hclog v1.5.0 // indirect | ||
github.com/hashicorp/go-immutable-radix v1.0.0 // indirect | ||
github.com/hashicorp/go-msgpack v0.5.5 // indirect | ||
github.com/hashicorp/golang-lru v0.5.0 // indirect | ||
github.com/mattn/go-colorable v0.1.12 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
) | ||
|
||
replace github.com/hashicorp/raft => /Users/swenson/projects/raft |
Oops, something went wrong.