mirror of
https://github.com/btcsuite/btcd.git
synced 2025-02-23 14:40:44 +01:00
This was the version tagged that created the new `ecdsa` and `schnorr` packages. Updating these pinned version lets importers properly use these packages and build. Things build as is since we use replace directive to point to the latest version _in the repo_ when we build.
17 lines
503 B
Modula-2
17 lines
503 B
Modula-2
module github.com/btcsuite/btcd/btcutil
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/aead/siphash v1.0.1
|
|
github.com/btcsuite/btcd v0.22.0-beta.0.20220111032746-97732e52810c
|
|
github.com/btcsuite/btcd/btcec/v2 v2.1.0
|
|
github.com/davecgh/go-spew v1.1.1
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1
|
|
github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23
|
|
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
|
|
)
|
|
|
|
replace github.com/btcsuite/btcd/btcec/v2 => ../btcec
|
|
|
|
replace github.com/btcsuite/btcd => ../
|