mirror of
https://github.com/gesellix/Bose-SoundTouch.git
synced 2026-08-18 08:36:13 +00:00
- Updated go.mod files to require Go 1.25.6 - Fixes vulnerability in crypto/tls package related to handshake message processing - All example modules also updated to maintain consistency - Verified with govulncheck: no vulnerabilities found
22 lines
602 B
AMPL
22 lines
602 B
AMPL
module github.com/gesellix/bose-soundtouch
|
|
|
|
go 1.25.6
|
|
|
|
require (
|
|
github.com/gorilla/websocket v1.5.3
|
|
github.com/hashicorp/mdns v1.0.6
|
|
github.com/urfave/cli/v2 v2.27.7
|
|
)
|
|
|
|
require (
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
|
|
github.com/miekg/dns v1.1.72 // indirect
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
|
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
|
|
golang.org/x/mod v0.32.0 // indirect
|
|
golang.org/x/net v0.49.0 // indirect
|
|
golang.org/x/sync v0.19.0 // indirect
|
|
golang.org/x/sys v0.40.0 // indirect
|
|
golang.org/x/tools v0.41.0 // indirect
|
|
)
|