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
```
This commit is contained in:
风吹过 2026-04-08 12:50:40 +08:00 committed by GitHub
parent ee29aaa871
commit 17d3683f26
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

4
go.mod
View file

@ -51,8 +51,8 @@ require (
) )
require ( require (
aead.dev/minisign v0.2.0 // indirect github.com/aead.dev/minisign v0.2.0 // indirect
filippo.io/edwards25519 v1.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/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/credentials v1.19.12 // indirect
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.20 // indirect github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.20 // indirect