Skip to content

Commit

Permalink
main: Update to use all new module versions.
Browse files Browse the repository at this point in the history
This updates all code in the main module to use the latest module
versions to pull in the latest updates.
  • Loading branch information
davecgh committed May 16, 2024
1 parent 3d4d272 commit 5096c0f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
24 changes: 12 additions & 12 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ go 1.19
require (
github.com/davecgh/go-spew v1.1.1
github.com/decred/base58 v1.0.5
github.com/decred/dcrd/addrmgr/v2 v2.0.2
github.com/decred/dcrd/bech32 v1.1.3
github.com/decred/dcrd/addrmgr/v2 v2.0.3
github.com/decred/dcrd/bech32 v1.1.4
github.com/decred/dcrd/blockchain/stake/v5 v5.0.1
github.com/decred/dcrd/blockchain/standalone/v2 v2.2.0
github.com/decred/dcrd/blockchain/v5 v5.0.0
github.com/decred/dcrd/certgen v1.1.2
github.com/decred/dcrd/blockchain/standalone/v2 v2.2.1
github.com/decred/dcrd/blockchain/v5 v5.0.1
github.com/decred/dcrd/certgen v1.1.3
github.com/decred/dcrd/chaincfg/chainhash v1.0.4
github.com/decred/dcrd/chaincfg/v3 v3.2.1
github.com/decred/dcrd/connmgr/v3 v3.1.1
github.com/decred/dcrd/connmgr/v3 v3.1.2
github.com/decred/dcrd/container/apbf v1.0.1
github.com/decred/dcrd/crypto/blake256 v1.0.1
github.com/decred/dcrd/crypto/ripemd160 v1.0.2
Expand All @@ -24,11 +24,11 @@ require (
github.com/decred/dcrd/dcrutil/v4 v4.0.2
github.com/decred/dcrd/gcs/v4 v4.1.0
github.com/decred/dcrd/lru v1.1.2
github.com/decred/dcrd/math/uint256 v1.0.1
github.com/decred/dcrd/mixing v0.0.1
github.com/decred/dcrd/peer/v3 v3.0.2
github.com/decred/dcrd/math/uint256 v1.0.2
github.com/decred/dcrd/mixing v0.1.0
github.com/decred/dcrd/peer/v3 v3.1.0
github.com/decred/dcrd/rpc/jsonrpc/types/v4 v4.2.0
github.com/decred/dcrd/rpcclient/v8 v8.0.0
github.com/decred/dcrd/rpcclient/v8 v8.0.1
github.com/decred/dcrd/txscript/v4 v4.1.1
github.com/decred/dcrd/wire v1.7.0
github.com/decred/dcrtest/dcrdtest v1.0.1-0.20240404170936-a2529e936df1
Expand All @@ -50,11 +50,11 @@ require (
github.com/companyzero/sntrup4591761 v0.0.0-20220309191932-9e0f3af2f07a // indirect
github.com/dchest/siphash v1.2.3 // indirect
github.com/decred/dcrd/dcrec/edwards/v2 v2.0.3 // indirect
github.com/decred/dcrd/hdkeychain/v3 v3.1.1 // indirect
github.com/decred/dcrd/hdkeychain/v3 v3.1.2 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
golang.org/x/crypto v0.23.0 // indirect
golang.org/x/net v0.21.0 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sync v0.7.0 // indirect
)

Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73r
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
golang.org/x/net v0.0.0-20200813134508-3edf25e44fcc/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=
golang.org/x/net v0.21.0 h1:AQyQV4dYCvJ7vGmJyKki9+PBdyvhkSd8EIx/qb0AYv4=
golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44=
golang.org/x/net v0.25.0 h1:d/OCCoBEUq33pjydKrGQhw7IlUPI2Oylr+8qLx49kac=
golang.org/x/net v0.25.0/go.mod h1:JkAGAh7GEvH74S6FOH42FLoXpXbE/aqXSrIQjXgsiwM=
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M=
golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
Expand Down

0 comments on commit 5096c0f

Please sign in to comment.