mirror of
https://github.com/lightningnetwork/lnd.git
synced 2026-08-15 12:50:15 +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.
14 lines
406 B
Modula-2
14 lines
406 B
Modula-2
module github.com/lightningnetwork/lnd/clock
|
|
|
|
go 1.25.5
|
|
|
|
require github.com/stretchr/testify v1.8.2
|
|
|
|
require (
|
|
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
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|