fix(deps): korrekte go-Direktive und direkte Dependencies auszeichnen

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
This commit is contained in:
Carsten Abele 2026-08-14 10:07:09 +02:00
parent f202ab811b
commit 4130a4eb4d
2 changed files with 31 additions and 3 deletions

9
go.mod
View file

@ -1,12 +1,15 @@
module git.ravensburg.dev/cabele/opnsense-portal
go 1.26.5
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/go-ldap/ldap/v3 v3.4.14 // indirect
github.com/google/uuid v1.6.0 // indirect
golang.org/x/crypto v0.54.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)