From cd0ecf1a90cab2c8e4066f6afa939a508bbaf19e Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Fri, 17 Jul 2026 21:36:56 +0000 Subject: [PATCH] update go mod, remove unused make test target --- Makefile | 3 --- go.mod | 22 +++++++++++----------- 2 files changed, 11 insertions(+), 14 deletions(-) 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 9c07818..a9d3eea 100644 --- a/go.mod +++ b/go.mod @@ -4,8 +4,8 @@ go 1.26.5 require ( github.com/gin-gonic/gin v1.12.0 - github.com/luthermonson/go-proxmox v0.8.0 - golang.org/x/sync v0.21.0 + github.com/luthermonson/go-proxmox v0.8.1 + golang.org/x/sync v0.22.0 proxmoxaas-common-lib v0.0.0 ) @@ -29,22 +29,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 )