mirror of
https://github.com/FlipsideCrypto/dcrd.git
synced 2026-02-06 10:56:47 +00:00
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.
23 lines
817 B
Modula-2
23 lines
817 B
Modula-2
module github.com/decred/dcrd/dcrutil
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.0
|
|
github.com/decred/base58 v1.0.0
|
|
github.com/decred/dcrd/chaincfg v1.2.0
|
|
github.com/decred/dcrd/chaincfg/chainhash v1.0.1
|
|
github.com/decred/dcrd/dcrec v0.0.0-20180721005212-59fe2b293f69
|
|
github.com/decred/dcrd/dcrec/edwards v0.0.0-20181208004914-a0816cf4301f
|
|
github.com/decred/dcrd/dcrec/secp256k1 v1.0.1
|
|
github.com/decred/dcrd/wire v1.2.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/wire => ../wire
|
|
)
|