go mod init hatte 1.26.5 eingetragen (lokaler Toolchain-Stand statt echter Anforderung) und alle Abhängigkeiten faelschlich als indirect markiert. Die tatsaechliche Untergrenze ist 1.25.0, vorgegeben durch golang.org/x/crypto. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01NBHF4R9EAejDJUMdwr6C68
15 lines
331 B
Modula-2
15 lines
331 B
Modula-2
module git.ravensburg.dev/cabele/opnsense-portal
|
|
|
|
go 1.25.0
|
|
|
|
require (
|
|
github.com/go-ldap/ldap/v3 v3.4.14
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/Azure/go-ntlmssp v0.1.1 // indirect
|
|
github.com/go-asn1-ber/asn1-ber v1.5.8 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
golang.org/x/crypto v0.54.0 // indirect
|
|
)
|