dcrd/txscript/go.mod
Dave Collins 295179fc0d
build: Refine build module support.
This further refines the modules to add the following new modules
instead of depending on the entire dcrd module:

- github.com/decred/dcrd/dcrjson@v1.0.0
- github.com/decred/dcrd/blockchain@v1.0.0
- github.com/decred/dcrd/blockchain/stake@v1.0.0
- github.com/decred/dcrd/gcs@v1.0.0
- github.com/decred/dcrd/mining@v1.0.0
- github.com/decred/dcrd/mempool@v1.0.0
- github.com/decred/dcrd/peer@v1.0.0
- github.com/decred/dcrd/rpcclient@v1.0.0

Also, it ensures modules that rely on other modules within the repo are
provided replacements to the latest repo code to ensure builds against
master and continuous integration use the latest code.

- github.com/decred/dcrd/addrmgr
- github.com/decred/dcrd/blockchain
- github.com/decred/dcrd/blockchain/stake
- github.com/decred/dcrd/chaincfg
- github.com/decred/dcrd/connmgr
- github.com/decred/dcrd/database
- github.com/decred/dcrd/dcrec/secp256k1
- github.com/decred/dcrd/dcrjson
- github.com/decred/dcrd/dcrutil
- github.com/decred/dcrd/gcs
- github.com/decred/dcrd/hdkeychain
- github.com/decred/dcrd/mempool
- github.com/decred/dcrd/mining
- github.com/decred/dcrd/peer
- github.com/decred/dcrd/rpcclient
- github.com/decred/dcrd/txscript
- github.com/decred/dcrd/wire
2018-08-05 20:45:45 -05:00

24 lines
866 B
Modula-2

module github.com/decred/dcrd/txscript
require (
github.com/decred/dcrd/chaincfg v1.0.1
github.com/decred/dcrd/chaincfg/chainhash v1.0.1
github.com/decred/dcrd/dcrec v0.0.0-20180721031028-5369a485acf6
github.com/decred/dcrd/dcrec/edwards v0.0.0-20180721031028-5369a485acf6
github.com/decred/dcrd/dcrec/secp256k1 v1.0.0
github.com/decred/dcrd/dcrutil v1.0.0
github.com/decred/dcrd/wire v1.0.1
github.com/decred/slog v1.0.0
golang.org/x/crypto v0.0.0-20180718160520-a2144134853f
)
replace (
github.com/decred/dcrd/chaincfg => ../chaincfg
github.com/decred/dcrd/chaincfg/chainhash => ../chaincfg/chainhash
github.com/decred/dcrd/dcrec => ../dcrec
github.com/decred/dcrd/dcrec/edwards => ../dcrec/edwards
github.com/decred/dcrd/dcrec/secp256k1 => ../dcrec/secp256k1
github.com/decred/dcrd/dcrutil => ../dcrutil
github.com/decred/dcrd/wire => ../wire
)