dcrd/hdkeychain/go.mod
Dave Collins 9e63126d48
hdkeychain: Prepare v2.0.1.
This updates the hdkeychain dependencies and serves as a base for
hdkeychain/v2.0.1.

Note that even though some of the updated dependencies consume a new
major version, they are only used internally or in the example code and
therefore a major version bump of the hdkeychain module is not required.

The updated direct dependencies in this commit are as follows:

- github.com/decred/dcrd/chaincfg/v2@v2.0.2
- github.com/decred/dcrd/dcrutil/v2@2.0.0
- github.com/decred/dcrd/dcrec/secp256k1@v1.0.2

The full list of updated direct dependencies since the previous
hdkeychain/v2.0.0 release are as follows:

- github.com/decred/dcrd/chaincfg/v2@v2.0.2
- github.com/decred/dcrd/dcrec@v1.0.0
- github.com/decred/dcrd/dcrutil/v2@2.0.0
- github.com/decred/dcrd/dcrec/secp256k1@v1.0.2
2019-07-22 19:03:51 -05:00

13 lines
318 B
Modula-2

module github.com/decred/dcrd/hdkeychain/v2
go 1.11
require (
github.com/decred/base58 v1.0.0
github.com/decred/dcrd/chaincfg/chainhash v1.0.1
github.com/decred/dcrd/chaincfg/v2 v2.0.2
github.com/decred/dcrd/dcrec v1.0.0
github.com/decred/dcrd/dcrec/secp256k1 v1.0.2
github.com/decred/dcrd/dcrutil/v2 v2.0.0
)