mirror of
https://github.com/FlipsideCrypto/dcrd.git
synced 2026-02-06 19:06:51 +00:00
This updates all of the modules that still rely on v1 of the chaincfg module to use v1.5.1 which builds correctly with the major API bump introduced in the edwards v1.0.0 module. While here, it also updates all references to the v0 edwards and dcrec modules to their tagged v1 counterparts, tidies all of the modules via go mod tidy, and removes all unnecessary indirect entries from the mod files to keep the modules using the versions the dependencies are tested with. The primary motivation for this change is that the chaincfg/v2 module requires edwards/v1 which is not API compatible with edwards/v0. Consequently, in order for each module to be incrementally updated to use chaincfg/v2, all of its dependencies must also be able to build with edwards/v1 which is the case as of chaincfg v1.5.1.
16 lines
442 B
Modula-2
16 lines
442 B
Modula-2
module github.com/decred/dcrd/txscript
|
|
|
|
go 1.11
|
|
|
|
require (
|
|
github.com/decred/dcrd/chaincfg v1.5.1
|
|
github.com/decred/dcrd/chaincfg/chainhash v1.0.1
|
|
github.com/decred/dcrd/dcrec v1.0.0
|
|
github.com/decred/dcrd/dcrec/edwards v1.0.0
|
|
github.com/decred/dcrd/dcrec/secp256k1 v1.0.1
|
|
github.com/decred/dcrd/dcrutil v1.2.0
|
|
github.com/decred/dcrd/wire v1.2.0
|
|
github.com/decred/slog v1.0.0
|
|
golang.org/x/crypto v0.0.0-20190131182504-b8fe1690c613
|
|
)
|