This updates the main, dcrutil, and hdkeychain modules to use the latest base58 module. The updated direct dependency is as follows: - github.com/decred/base58@v1.0.3
20 lines
628 B
Modula-2
20 lines
628 B
Modula-2
module github.com/decred/dcrd/hdkeychain/v3
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/decred/base58 v1.0.3
|
|
github.com/decred/dcrd/chaincfg/v3 v3.0.0-20200215031403-6b2ce76f0986
|
|
github.com/decred/dcrd/crypto/blake256 v1.0.0
|
|
github.com/decred/dcrd/crypto/ripemd160 v1.0.0
|
|
github.com/decred/dcrd/dcrec v1.0.0
|
|
github.com/decred/dcrd/dcrec/secp256k1/v3 v3.0.0-20200215031403-6b2ce76f0986
|
|
github.com/decred/dcrd/dcrutil/v3 v3.0.0-20200215031403-6b2ce76f0986
|
|
)
|
|
|
|
replace (
|
|
github.com/decred/dcrd/chaincfg/v3 => ../chaincfg
|
|
github.com/decred/dcrd/dcrec/secp256k1/v3 => ../dcrec/secp256k1
|
|
github.com/decred/dcrd/dcrutil/v3 => ../dcrutil
|
|
)
|