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/v4@v4.0.0-20210129190127-4ebd135a82f1 - github.com/decred/dcrd/database/v2@v2.0.3-0.20210129190127-4ebd135a82f1 - github.com/decred/dcrd/gcs/v3@v3.0.0-20210129190127-4ebd135a82f1 - github.com/decred/dcrd/hdkeychain/v3@v3.0.1-0.20210129190127-4ebd135a82f1 - github.com/decred/dcrd/peer/v2@v2.2.1-0.20210129190127-4ebd135a82f1 - github.com/decred/dcrd/rpcclient/v7@v7.0.0-20210129190127-4ebd135a82f1 - github.com/decred/dcrd/txscript/v4@v4.0.0-20210129190127-4ebd135a82f1
20 lines
531 B
Modula-2
20 lines
531 B
Modula-2
module github.com/decred/dcrd/peer/v2
|
|
|
|
go 1.11
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1
|
|
github.com/decred/dcrd/chaincfg/chainhash v1.0.2
|
|
github.com/decred/dcrd/lru v1.1.0
|
|
github.com/decred/dcrd/txscript/v4 v4.0.0-20210129190127-4ebd135a82f1
|
|
github.com/decred/dcrd/wire v1.4.0
|
|
github.com/decred/go-socks v1.1.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
|
|
github.com/decred/dcrd/txscript/v4 => ../txscript
|
|
)
|