-
Notifications
You must be signed in to change notification settings - Fork 444
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.3` in `go.mod`, but users of this library will probably want to override the the setting. While we're here, test against the latest versions of Go and upgrade the `go.mod` file. I tested that this appears to work with Nomad.
- Loading branch information
Christopher Swenson
committed
Oct 19, 2023
1 parent
8ddac56
commit 2c1a1a6
Showing
11 changed files
with
85 additions
and
54 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
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,19 +1,26 @@ | ||
module github.com/hashicorp/memberlist | ||
|
||
go 1.12 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c | ||
github.com/hashicorp/go-immutable-radix v1.0.0 // indirect | ||
github.com/hashicorp/go-msgpack v0.5.3 | ||
github.com/hashicorp/go-msgpack/v2 v2.1.1 | ||
github.com/hashicorp/go-multierror v1.0.0 | ||
github.com/hashicorp/go-sockaddr v1.0.0 | ||
github.com/miekg/dns v1.1.26 | ||
github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 | ||
github.com/stretchr/testify v1.2.2 | ||
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/hashicorp/errwrap v1.0.0 // indirect | ||
github.com/hashicorp/go-immutable-radix v1.0.0 // indirect | ||
github.com/hashicorp/golang-lru v0.5.0 // indirect | ||
github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
golang.org/x/crypto v0.14.0 // indirect | ||
golang.org/x/net v0.16.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
) |
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
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
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
Oops, something went wrong.