This updates the chaincfg module dependencies and serves as a base for chaincfg/v3.1.0. The updated direct dependencies in this commit are as follows: - github.com/decred/dcrd/chaincfg/chainhash@v1.0.3 - github.com/decred/dcrd/wire@v1.5.0 The full list of updated direct dependencies since the previous chaincfg/v3.0.0 release are the same as above. Finally, all modules in the repository are tidied to ensure they are updated to use the latest versions hoisted forward as a result.
33 lines
1.3 KiB
Modula-2
33 lines
1.3 KiB
Modula-2
module github.com/decred/dcrd/blockchain/v4
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/decred/dcrd/blockchain/stake/v4 v4.0.0-20210906140327-598bf66f24a6
|
|
github.com/decred/dcrd/blockchain/standalone/v2 v2.0.0
|
|
github.com/decred/dcrd/chaincfg/chainhash v1.0.3
|
|
github.com/decred/dcrd/chaincfg/v3 v3.0.1-0.20210906134819-8c0e8616ebda
|
|
github.com/decred/dcrd/database/v3 v3.0.0-20210802132946-9ede6ae83e0f
|
|
github.com/decred/dcrd/dcrec v1.0.0
|
|
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/gcs/v3 v3.0.0-20210916172859-ca03de05ecd0
|
|
github.com/decred/dcrd/lru v1.1.0
|
|
github.com/decred/dcrd/txscript/v4 v4.0.0-20210415215133-96b98390a9a9
|
|
github.com/decred/dcrd/wire v1.5.0
|
|
github.com/decred/slog v1.1.0
|
|
github.com/syndtr/goleveldb v1.0.1-0.20200815110645-5c35d600f0ca
|
|
)
|
|
|
|
replace (
|
|
github.com/decred/dcrd/blockchain/stake/v4 => ./stake
|
|
github.com/decred/dcrd/blockchain/standalone/v2 => ./standalone
|
|
github.com/decred/dcrd/chaincfg/v3 => ../chaincfg
|
|
github.com/decred/dcrd/database/v3 => ../database
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 => ../dcrec/secp256k1
|
|
github.com/decred/dcrd/dcrutil/v4 => ../dcrutil
|
|
github.com/decred/dcrd/gcs/v3 => ../gcs
|
|
github.com/decred/dcrd/lru => ../lru
|
|
github.com/decred/dcrd/txscript/v4 => ../txscript
|
|
)
|