mirror of
https://github.com/lightningnetwork/lnd.git
synced 2026-08-19 13:17:32 +02:00
With Go 1.26 now released, this bumps the minimum required Go version from 1.24.11 to 1.25.5 across all go.mod files and updates the installation documentation with the correct download links and SHA256 hashes for Go 1.25.5 binaries. The build system (Dockerfiles, Makefile, CI) was already using Go 1.25.5, so this change aligns the go.mod minimum version to match.
26 lines
868 B
Modula-2
26 lines
868 B
Modula-2
module github.com/lightningnetwork/lnd/tor
|
|
|
|
require (
|
|
github.com/btcsuite/btcd v0.24.2
|
|
github.com/btcsuite/btclog/v2 v2.0.1-0.20250602222548-9967d19bb084
|
|
github.com/miekg/dns v1.1.43
|
|
github.com/stretchr/testify v1.8.4
|
|
golang.org/x/net v0.39.0
|
|
)
|
|
|
|
require (
|
|
github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0 // indirect
|
|
github.com/btcsuite/btclog v0.0.0-20241003133417-09c4e92e319c // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/kr/pretty v0.3.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/rogpeppe/go-internal v1.9.0 // indirect
|
|
github.com/stretchr/objx v0.5.0 // indirect
|
|
golang.org/x/crypto v0.37.0 // indirect
|
|
golang.org/x/sync v0.2.0 // indirect
|
|
golang.org/x/sys v0.32.0 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
go 1.25.5
|