dcrd/peer/go.mod
Dave Collins 220d434b6e
release: Bump module versions and deps.
This bumps the various module versions as follows:

- github.com/decred/dcrd/dcrec/secp256k1@v1.0.1
- github.com/decred/dcrd/dcrjson@v1.1.0
- github.com/decred/dcrd/database@v1.0.3
- github.com/decred/dcrd/blockchain/stake@v1.1.0
- github.com/decred/dcrd/mining@v1.1.0
- github.com/decred/dcrd/certgen@v1.0.2
- github.com/decred/dcrd/connmgr@v1.0.2
- github.com/decred/dcrd/mempool@v1.1.0

In addition, it serves as a base for tagging releases of the following
module versions that have previous been bumped since the last release,
but not yet tagged:

- github.com/decred/dcrd/wire@v1.2.0
- github.com/decred/dcrd/chaincfg@v1.2.0
- github.com/decred/dcrd/dcrutil@v1.2.0
- github.com/decred/dcrd/txscript@v1.0.2
- github.com/decred/dcrd/blockchain@v1.1.0
- github.com/decred/dcrd/hdkeychain@v1.1.1
- github.com/decred/dcrd/peer@v1.1.0
- github.com/decred/dcrd/rpcclient@v1.1.0

Finally, it updates all of the dependencies for every module accordingly,
adds a few missing overrides for transitive dependencies, and tidies up
some of the go module sum files.
2018-12-10 11:18:00 -06:00

28 lines
1014 B
Modula-2

module github.com/decred/dcrd/peer
require (
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd
github.com/davecgh/go-spew v1.1.0
github.com/decred/dcrd/blockchain v1.0.1
github.com/decred/dcrd/chaincfg v1.2.0
github.com/decred/dcrd/chaincfg/chainhash v1.0.1
github.com/decred/dcrd/txscript v1.0.1
github.com/decred/dcrd/wire v1.2.0
github.com/decred/slog v1.0.0
)
replace (
github.com/decred/dcrd/blockchain => ../blockchain
github.com/decred/dcrd/blockchain/stake => ../blockchain/stake
github.com/decred/dcrd/chaincfg => ../chaincfg
github.com/decred/dcrd/chaincfg/chainhash => ../chaincfg/chainhash
github.com/decred/dcrd/database => ../database
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/gcs => ../gcs
github.com/decred/dcrd/txscript => ../txscript
github.com/decred/dcrd/wire => ../wire
)