From 7809e6adb1bae0c786da9223b64a62e5162dfcb7 Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Fri, 17 Jul 2026 21:35:19 +0000 Subject: [PATCH] update go mod, remove unused test make target --- Makefile | 5 ----- go.mod | 18 +++++++++--------- 2 files changed, 9 insertions(+), 14 deletions(-) diff --git a/Makefile b/Makefile index 307a4dc..1dcf62c 100644 --- a/Makefile +++ b/Makefile @@ -11,11 +11,6 @@ build-wfa-js: $(MAKE) -C WFA-JS cp -f WFA-JS/dist/* web/modules -test: clean test-wfa-js - -test-wfa-js: - $(MAKE) test -C WFA-JS - clean: clean-wfa-js @echo "======================== Cleaning Project ======================" go clean diff --git a/go.mod b/go.mod index 15ab289..8a2290b 100644 --- a/go.mod +++ b/go.mod @@ -25,22 +25,22 @@ require ( github.com/goccy/go-json v0.10.6 // indirect github.com/goccy/go-yaml v1.19.2 // 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/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/tdewolff/parse/v2 v2.8.13 // 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 )