mirror of
https://github.com/FlipsideCrypto/dcrd.git
synced 2026-02-06 10:56:47 +00:00
This updates the txscript dependencies and serves as a base for txscript/v1.1.0. The updated direct dependencies in this commit are as follows: - github.com/decred/dcrd/dcrec/secp256k1@v1.0.2 - github.com/decred/dcrd/dcrutil@v1.3.0 - golang.org/x/crypto@v0.0.0-20190611184440-5c40567a22f8 The full list of updated direct dependencies since the previous txscripti/v1.0.2 release are as follows: - github.com/decred/dcrd/chaincfg@v1.5.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.2 - github.com/decred/dcrd/dcrutil@v1.3.0 - golang.org/x/crypto@v0.0.0-20190611184440-5c40567a22f8
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.2
|
|
github.com/decred/dcrd/dcrutil v1.3.0
|
|
github.com/decred/dcrd/wire v1.2.0
|
|
github.com/decred/slog v1.0.0
|
|
golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8
|
|
)
|