dcrd/dcrutil/go.mod
Dave Collins 0fb3e7eabd
dcrutil: Convert to use new stdaddr package.
This updates VerifyMessage to use the stdaddr package for addresses
instead of the local Address type in preparation for its removal.
2021-04-15 16:58:25 -05:00

21 lines
628 B
Modula-2

module github.com/decred/dcrd/dcrutil/v4
go 1.13
require (
github.com/davecgh/go-spew v1.1.1
github.com/decred/base58 v1.0.3
github.com/decred/dcrd/chaincfg/chainhash v1.0.2
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/txscript/v4 v4.0.0-20210415215133-96b98390a9a9
github.com/decred/dcrd/wire v1.4.0
)
replace (
github.com/decred/dcrd/dcrec/secp256k1/v4 => ../dcrec/secp256k1
github.com/decred/dcrd/txscript/v4 => ../txscript
)