dcrd/go.mod
Josh Rickmar 4f3c5d33ad hdkeychain: Start v3 module dev cycle.
hdkeychain has received breaking changes since the last release (break
occurred in 85f0c09df2), and further releases must use a bumped major
version.  The standard process for introducing major API breaks has
been followed:

  - Bump the major version in the go.mod of the affected module if not
    already done since the last release tag
  - Add a replacement to the go.mod in the main module if not already done
    since the last release tag
  - Update all imports in the repo to use the new major version as
    necessary
  - Make necessary modifications to allow all other modules to use the new
    version in the same commit
  - Repeat the process for any other modules the require a new major as a
    result of consuming the new major(s)
2020-02-14 17:41:50 -06:00

75 lines
3.2 KiB
Modula-2

module github.com/decred/dcrd
go 1.11
require (
github.com/btcsuite/winsvc v1.0.0
github.com/decred/base58 v1.0.2
github.com/decred/dcrd/addrmgr v1.1.0
github.com/decred/dcrd/bech32 v1.0.0
github.com/decred/dcrd/blockchain/stake/v3 v3.0.0-20200104000002-54b67d3474fb
github.com/decred/dcrd/blockchain/standalone v1.1.0
github.com/decred/dcrd/blockchain/v3 v3.0.0-20200104000002-54b67d3474fb
github.com/decred/dcrd/certgen v1.1.0
github.com/decred/dcrd/chaincfg/chainhash v1.0.2
github.com/decred/dcrd/chaincfg/v3 v3.0.0-20200214194519-928737b3e580
github.com/decred/dcrd/connmgr/v3 v3.0.0-20200104000002-54b67d3474fb
github.com/decred/dcrd/crypto/ripemd160 v1.0.0
github.com/decred/dcrd/database/v2 v2.0.1
github.com/decred/dcrd/dcrec v1.0.0
github.com/decred/dcrd/dcrec/secp256k1/v3 v3.0.0-20200214194519-928737b3e580
github.com/decred/dcrd/dcrjson/v3 v3.0.1
github.com/decred/dcrd/dcrutil/v3 v3.0.0-20200104000002-54b67d3474fb
github.com/decred/dcrd/fees/v2 v2.0.0
github.com/decred/dcrd/gcs/v2 v2.0.1
github.com/decred/dcrd/hdkeychain/v3 v3.0.0
github.com/decred/dcrd/lru v1.0.0
github.com/decred/dcrd/mempool/v4 v4.0.0-20200104000002-54b67d3474fb
github.com/decred/dcrd/mining/v3 v3.0.0-20200104000002-54b67d3474fb
github.com/decred/dcrd/peer/v2 v2.1.0
github.com/decred/dcrd/rpc/jsonrpc/types/v2 v2.0.0
github.com/decred/dcrd/rpcclient/v6 v6.0.0-20200214194519-928737b3e580
github.com/decred/dcrd/txscript/v3 v3.0.0-20200104000002-54b67d3474fb
github.com/decred/dcrd/wire v1.3.0
github.com/decred/dcrwallet/rpc/jsonrpc/types v1.4.0
github.com/decred/go-socks v1.1.0
github.com/decred/slog v1.0.0
github.com/gorilla/websocket v1.4.1
github.com/jessevdk/go-flags v1.4.0
github.com/jrick/bitset v1.0.0
github.com/jrick/logrotate v1.0.0
golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4
)
replace (
github.com/decred/dcrd/addrmgr => ./addrmgr
github.com/decred/dcrd/bech32 => ./bech32
github.com/decred/dcrd/blockchain/stake/v3 => ./blockchain/stake
github.com/decred/dcrd/blockchain/standalone => ./blockchain/standalone
github.com/decred/dcrd/blockchain/v3 => ./blockchain
github.com/decred/dcrd/certgen => ./certgen
github.com/decred/dcrd/chaincfg/chainhash => ./chaincfg/chainhash
github.com/decred/dcrd/chaincfg/v3 => ./chaincfg
github.com/decred/dcrd/connmgr/v3 => ./connmgr
github.com/decred/dcrd/crypto/blake256 => ./crypto/blake256
github.com/decred/dcrd/crypto/ripemd160 => ./crypto/ripemd160
github.com/decred/dcrd/database/v2 => ./database
github.com/decred/dcrd/dcrec => ./dcrec
github.com/decred/dcrd/dcrec/secp256k1/v3 => ./dcrec/secp256k1
github.com/decred/dcrd/dcrjson/v3 => ./dcrjson
github.com/decred/dcrd/dcrutil/v3 => ./dcrutil
github.com/decred/dcrd/fees/v2 => ./fees
github.com/decred/dcrd/gcs/v2 => ./gcs
github.com/decred/dcrd/hdkeychain/v3 => ./hdkeychain
github.com/decred/dcrd/limits => ./limits
github.com/decred/dcrd/lru => ./lru
github.com/decred/dcrd/mempool/v4 => ./mempool
github.com/decred/dcrd/mining/v3 => ./mining
github.com/decred/dcrd/peer/v2 => ./peer
github.com/decred/dcrd/rpc/jsonrpc/types/v2 => ./rpc/jsonrpc/types
github.com/decred/dcrd/rpcclient/v6 => ./rpcclient
github.com/decred/dcrd/txscript/v3 => ./txscript
github.com/decred/dcrd/wire => ./wire
)