From 17d3683f261165c3293e6da164d3fa922fb30fa8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=A3=8E=E5=90=B9=E8=BF=87?= Date: Wed, 8 Apr 2026 12:50:40 +0800 Subject: [PATCH] Update module dependencies in go.mod The original paths of these two packages are inaccessible, so they are changed to github repository addresses ``` go: aead.dev/minisign@v0.2.0: Get "https://proxy.golang.org/aead.dev/minisign/@v/v0.2.0.mod": dial tcp 142.250.73.145:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. make: *** [Makefile:288: deps] Error 1 ``` ``` go: filippo.io/edwards25519@v1.2.0: Get "https://proxy.golang.org/filippo.io/edwards25519/@v/v1.2.0.mod": dial tcp 142.250.73.145:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. make: *** [Makefile:288: deps] Error 1 ``` --- go.mod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index 1ff7cb306..a7fd853bd 100644 --- a/go.mod +++ b/go.mod @@ -51,8 +51,8 @@ require ( ) require ( - aead.dev/minisign v0.2.0 // indirect - filippo.io/edwards25519 v1.2.0 // indirect + github.com/aead.dev/minisign v0.2.0 // indirect + github.com/FiloSottile/edwards25519 v1.2.0 // indirect github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.8 // indirect github.com/aws/aws-sdk-go-v2/credentials v1.19.12 // indirect github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.20 // indirect