mirror of
https://github.com/btcsuite/btcd.git
synced 2026-08-13 12:32:51 +02:00
42 lines
1.5 KiB
Modula-2
42 lines
1.5 KiB
Modula-2
module github.com/btcsuite/btcd/btcutil/v2
|
|
|
|
go 1.25
|
|
|
|
require (
|
|
github.com/aead/siphash v1.0.1
|
|
github.com/btcsuite/btcd/address/v2 v2.0.0
|
|
github.com/btcsuite/btcd/btcec/v2 v2.4.0
|
|
github.com/btcsuite/btcd/chaincfg/v2 v2.0.0
|
|
github.com/btcsuite/btcd/chainhash/v2 v2.0.0
|
|
github.com/btcsuite/btcd/txscript/v2 v2.0.0
|
|
github.com/btcsuite/btcd/wire/v2 v2.0.0
|
|
github.com/davecgh/go-spew v1.1.1
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.0
|
|
github.com/kcalvinalvin/anet v0.0.0-20251112173137-d8ddc1f6dbee
|
|
github.com/kkdai/bstream v1.0.0
|
|
)
|
|
|
|
require (
|
|
github.com/btcsuite/btclog v1.0.0 // indirect
|
|
github.com/decred/dcrd/crypto/blake256 v1.1.0 // indirect
|
|
golang.org/x/crypto v0.40.0 // indirect
|
|
golang.org/x/sys v0.35.0 // indirect
|
|
)
|
|
|
|
// TODO(guggero): Remove this as soon as we have a tagged version of address.
|
|
replace github.com/btcsuite/btcd/address/v2 => ../address
|
|
|
|
// TODO(guggero): Remove this as soon as we have a tagged version of btcec.
|
|
replace github.com/btcsuite/btcd/btcec/v2 => ../btcec
|
|
|
|
// TODO(guggero): Remove this as soon as we have a tagged version of chaincfg.
|
|
replace github.com/btcsuite/btcd/chaincfg/v2 => ../chaincfg
|
|
|
|
// TODO(guggero): Remove this as soon as we have a tagged version of chainhash.
|
|
replace github.com/btcsuite/btcd/chainhash/v2 => ../chainhash
|
|
|
|
// TODO(guggero): Remove this as soon as we have a tagged version of txscript.
|
|
replace github.com/btcsuite/btcd/txscript/v2 => ../txscript
|
|
|
|
// TODO(guggero): Remove this as soon as we have a tagged version of wire.
|
|
replace github.com/btcsuite/btcd/wire/v2 => ../wire
|