diff --git a/Makefile b/Makefile index 23a57b4..ec729fa 100644 --- a/Makefile +++ b/Makefile @@ -5,9 +5,6 @@ build: clean mkdir -p dist CGO_ENABLED=0 go build -ldflags="-s -w" -v -o dist/ . -test: clean - go run . - clean: @echo "======================== Cleaning Project ======================" go clean diff --git a/go.mod b/go.mod index 78da2ab..e1b9458 100644 --- a/go.mod +++ b/go.mod @@ -5,8 +5,8 @@ go 1.26.5 require ( github.com/gin-contrib/sessions v1.1.0 github.com/gin-gonic/gin v1.12.0 - github.com/go-ldap/ldap/v3 v3.4.13 - github.com/luthermonson/go-proxmox v0.8.0 + github.com/go-ldap/ldap/v3 v3.4.14 + github.com/luthermonson/go-proxmox v0.8.1 github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d proxmoxaas-common-lib v0.0.0 ) @@ -24,7 +24,7 @@ require ( github.com/djherbis/times v1.6.0 // indirect github.com/gabriel-vasile/mimetype v1.4.13 // indirect github.com/gin-contrib/sse v1.1.1 // indirect - github.com/go-asn1-ber/asn1-ber v1.5.8-0.20250403174932-29230038a667 // indirect + github.com/go-asn1-ber/asn1-ber v1.5.8 // indirect github.com/go-playground/locales v0.14.1 // indirect github.com/go-playground/universal-translator v0.18.1 // indirect github.com/go-playground/validator/v10 v10.30.3 // indirect @@ -37,22 +37,22 @@ require ( github.com/gorilla/websocket v1.5.3 // indirect github.com/jinzhu/copier v0.4.0 // indirect github.com/json-iterator/go v1.1.12 // indirect - github.com/klauspost/cpuid/v2 v2.3.0 // indirect + github.com/klauspost/cpuid/v2 v2.4.0 // indirect github.com/leodido/go-urn v1.4.0 // indirect github.com/magefile/mage v1.17.2 // indirect - github.com/mattn/go-isatty v0.0.22 // indirect + github.com/mattn/go-isatty v0.0.23 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect - github.com/pelletier/go-toml/v2 v2.4.0 // indirect + github.com/pelletier/go-toml/v2 v2.4.3 // indirect github.com/quic-go/qpack v0.6.0 // indirect github.com/quic-go/quic-go v0.60.0 // indirect github.com/twitchyliquid64/golang-asm v0.15.1 // indirect github.com/ugorji/go/codec v1.3.1 // indirect - go.mongodb.org/mongo-driver/v2 v2.6.1 // indirect - golang.org/x/arch v0.28.0 // indirect - golang.org/x/crypto v0.53.0 // indirect - golang.org/x/net v0.56.0 // indirect - golang.org/x/sys v0.46.0 // indirect - golang.org/x/text v0.38.0 // indirect + go.mongodb.org/mongo-driver/v2 v2.8.0 // indirect + golang.org/x/arch v0.29.0 // indirect + golang.org/x/crypto v0.54.0 // indirect + golang.org/x/net v0.57.0 // indirect + golang.org/x/sys v0.47.0 // indirect + golang.org/x/text v0.40.0 // indirect google.golang.org/protobuf v1.36.11 // indirect )