This modifies some recently-updated modules to use a valid prerelease version so they can be used in require statements in consumer code that is also under development. Several commits are needed since there is a dependency chain that involves transitive deps. The updated direct dependencies are as follows: - github.com/decred/dcrd/blockchain/stake/v4@v4.0.0-20210129181600-6ae0142d3b28 - github.com/decred/dcrd/blockchain/v4@4.0.0-20210129181600-6ae0142d3b28 - github.com/decred/dcrd/dcrutil/v4@v4.0.0-20210129181600-6ae0142d3b28 - github.com/decred/dcrd/hdkeychain/v3@v3.0.0-20210129181600-6ae0142d3b28 - github.com/decred/dcrd/txscript/v4@v4.0.0-20210129181600-6ae0142d3b28
22 lines
666 B
Modula-2
22 lines
666 B
Modula-2
module github.com/decred/dcrd/txscript/v4
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/dchest/siphash v1.2.1
|
|
github.com/decred/dcrd/chaincfg/chainhash v1.0.2
|
|
github.com/decred/dcrd/chaincfg/v3 v3.0.0
|
|
github.com/decred/dcrd/crypto/ripemd160 v1.0.1
|
|
github.com/decred/dcrd/dcrec v1.0.0
|
|
github.com/decred/dcrd/dcrec/edwards/v2 v2.0.1
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.0-20210127014238-b33b46cf1a24
|
|
github.com/decred/dcrd/dcrutil/v4 v4.0.0-20210129181600-6ae0142d3b28
|
|
github.com/decred/dcrd/wire v1.4.0
|
|
github.com/decred/slog v1.1.0
|
|
)
|
|
|
|
replace (
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 => ../dcrec/secp256k1
|
|
github.com/decred/dcrd/dcrutil/v4 => ../dcrutil
|
|
)
|