2021-12-24 16:34:26 -08:00
|
|
|
module github.com/btcsuite/btcd/btcutil
|
|
|
|
|
|
|
|
go 1.16
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/aead/siphash v1.0.1
|
2022-01-10 19:40:11 -08:00
|
|
|
github.com/btcsuite/btcd v0.22.0-beta.0.20220111032746-97732e52810c
|
2022-02-01 12:51:19 -08:00
|
|
|
github.com/btcsuite/btcd/btcec/v2 v2.1.0
|
2022-03-08 16:09:59 +01:00
|
|
|
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.0
|
2021-12-24 16:34:26 -08:00
|
|
|
github.com/davecgh/go-spew v1.1.1
|
2021-11-18 18:43:53 -08:00
|
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1
|
2021-12-24 16:34:26 -08:00
|
|
|
github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23
|
|
|
|
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
|
|
|
|
)
|
2022-01-10 19:40:11 -08:00
|
|
|
|
2021-11-18 18:43:53 -08:00
|
|
|
replace github.com/btcsuite/btcd/btcec/v2 => ../btcec
|
|
|
|
|
2022-01-10 19:40:11 -08:00
|
|
|
replace github.com/btcsuite/btcd => ../
|
2022-03-08 16:10:12 +01:00
|
|
|
|
|
|
|
// We depend on chainhash as is, so we need to replace to use the version of
|
|
|
|
// chainhash included in the version of btcd we're building in.
|
|
|
|
// TODO(guggero): Remove this as soon as we have a tagged version of chainhash.
|
|
|
|
replace github.com/btcsuite/btcd/chaincfg/chainhash => ../chaincfg/chainhash
|