dcrd/txscript/go.mod
Dave Collins 76f80ba180
txscript: Break dcrutil dependency.
Now that the addresses have all been converted over to use the stdaddr
package, this removes only remaining dependencies on dcrutil which are
in the tests in order to avoid cyclic dependencies when updating the
dcrutil code to the use the stdaddr package.
2021-04-12 11:21:01 -05:00

20 lines
622 B
Modula-2

module github.com/decred/dcrd/txscript/v4
go 1.13
require (
github.com/dchest/siphash v1.2.2
github.com/decred/base58 v1.0.3
github.com/decred/dcrd/chaincfg/chainhash v1.0.2
github.com/decred/dcrd/chaincfg/v3 v3.0.0
github.com/decred/dcrd/crypto/blake256 v1.0.0
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/wire v1.4.0
github.com/decred/slog v1.1.0
)
replace github.com/decred/dcrd/dcrec/secp256k1/v4 => ../dcrec/secp256k1