dcrd/blockchain/go.mod
Ryan Staudt 7474441bbe multi: Update gcs prerel version.
This modifies some recently-updated modules to use a valid gcs
prerelease version so they can be used in require statements in consumer
code that is also under development.

The updated direct dependencies are as follows:

- github.com/decred/dcrd/gcs/v3 v3.0.0-20210916172859-ca03de05ecd0
2021-09-16 13:16:21 -05:00

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.2
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.4.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
)