dcrd/database/go.mod
Matheus Degiovani 9ede6ae83e multi: Introduce database/v3 module.
This bumps the major version of the database module to v3. This is
needed because the current code already has backwards incompatible
changes.
2021-08-02 08:29:46 -05:00

20 lines
575 B
Modula-2

module github.com/decred/dcrd/database/v3
go 1.13
require (
github.com/decred/dcrd/chaincfg/chainhash v1.0.2
github.com/decred/dcrd/chaincfg/v3 v3.0.0
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
github.com/jessevdk/go-flags v1.4.0
github.com/syndtr/goleveldb v1.0.1-0.20200815110645-5c35d600f0ca
)
replace (
github.com/decred/dcrd/dcrec/secp256k1/v4 => ../dcrec/secp256k1
github.com/decred/dcrd/dcrutil/v4 => ../dcrutil
github.com/decred/dcrd/txscript/v4 => ../txscript
)