mirror of
https://github.com/FlipsideCrypto/dcrd.git
synced 2026-02-06 10:56:47 +00:00
This freezes the root module usage of the connmgr module by removing the replacement and bumping the required version. This means building the software will still produce binaries based on the v1 module until the v2 module is fully released. All future releases will be moving to version 2 of the module. Consequently, it bumps the required module versions as follows: - github.com/decred/dcrd/connmgr@v1.1.0
75 lines
2.9 KiB
Modula-2
75 lines
2.9 KiB
Modula-2
module github.com/decred/dcrd
|
|
|
|
go 1.11
|
|
|
|
require (
|
|
github.com/btcsuite/winsvc v1.0.0
|
|
github.com/dchest/blake256 v1.1.0 // indirect
|
|
github.com/decred/base58 v1.0.0
|
|
github.com/decred/dcrd/addrmgr v1.0.2
|
|
github.com/decred/dcrd/blockchain v1.2.0
|
|
github.com/decred/dcrd/blockchain/stake v1.2.1
|
|
github.com/decred/dcrd/blockchain/stake/v2 v2.0.1
|
|
github.com/decred/dcrd/blockchain/standalone v1.0.0
|
|
github.com/decred/dcrd/certgen v1.1.0
|
|
github.com/decred/dcrd/chaincfg v1.5.2
|
|
github.com/decred/dcrd/chaincfg/chainhash v1.0.2
|
|
github.com/decred/dcrd/chaincfg/v2 v2.2.0
|
|
github.com/decred/dcrd/connmgr v1.1.0
|
|
github.com/decred/dcrd/crypto/blake256 v1.0.0
|
|
github.com/decred/dcrd/database v1.1.0
|
|
github.com/decred/dcrd/database/v2 v2.0.0
|
|
github.com/decred/dcrd/dcrec v1.0.0
|
|
github.com/decred/dcrd/dcrec/secp256k1 v1.0.2
|
|
github.com/decred/dcrd/dcrjson/v2 v2.2.0
|
|
github.com/decred/dcrd/dcrjson/v3 v3.0.0
|
|
github.com/decred/dcrd/dcrutil v1.4.0
|
|
github.com/decred/dcrd/dcrutil/v2 v2.0.0
|
|
github.com/decred/dcrd/fees v1.0.0
|
|
github.com/decred/dcrd/gcs v1.1.0
|
|
github.com/decred/dcrd/hdkeychain/v2 v2.0.1
|
|
github.com/decred/dcrd/lru v1.0.0
|
|
github.com/decred/dcrd/mempool/v2 v2.0.0
|
|
github.com/decred/dcrd/mining v1.1.1
|
|
github.com/decred/dcrd/peer v1.1.0
|
|
github.com/decred/dcrd/rpc/jsonrpc/types v1.0.0
|
|
github.com/decred/dcrd/rpcclient/v3 v3.0.0
|
|
github.com/decred/dcrd/txscript v1.1.0
|
|
github.com/decred/dcrd/txscript/v2 v2.0.0
|
|
github.com/decred/dcrd/wire v1.2.0
|
|
github.com/decred/dcrwallet/rpc/jsonrpc/types v1.2.0
|
|
github.com/decred/go-socks v1.0.0
|
|
github.com/decred/slog v1.0.0
|
|
github.com/gorilla/websocket v1.4.0
|
|
github.com/jessevdk/go-flags v1.4.0
|
|
github.com/jrick/bitset v1.0.0
|
|
github.com/jrick/logrotate v1.0.0
|
|
github.com/kr/pretty v0.1.0 // indirect
|
|
golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8
|
|
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f // indirect
|
|
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
|
|
)
|
|
|
|
replace (
|
|
github.com/decred/dcrd/addrmgr => ./addrmgr
|
|
github.com/decred/dcrd/blockchain/standalone => ./blockchain/standalone
|
|
github.com/decred/dcrd/certgen => ./certgen
|
|
github.com/decred/dcrd/chaincfg/chainhash => ./chaincfg/chainhash
|
|
github.com/decred/dcrd/chaincfg/v2 => ./chaincfg
|
|
github.com/decred/dcrd/crypto/blake256 => ./crypto/blake256
|
|
github.com/decred/dcrd/database/v2 => ./database
|
|
github.com/decred/dcrd/dcrec => ./dcrec
|
|
github.com/decred/dcrd/dcrjson/v3 => ./dcrjson
|
|
github.com/decred/dcrd/dcrutil/v2 => ./dcrutil
|
|
github.com/decred/dcrd/fees => ./fees
|
|
github.com/decred/dcrd/gcs => ./gcs
|
|
github.com/decred/dcrd/hdkeychain/v2 => ./hdkeychain
|
|
github.com/decred/dcrd/limits => ./limits
|
|
github.com/decred/dcrd/lru => ./lru
|
|
github.com/decred/dcrd/mempool/v2 => ./mempool
|
|
github.com/decred/dcrd/peer => ./peer
|
|
github.com/decred/dcrd/rpc/jsonrpc/types => ./rpc/jsonrpc/types
|
|
github.com/decred/dcrd/txscript/v2 => ./txscript
|
|
github.com/decred/dcrd/wire => ./wire
|
|
)
|