From a8af2ef1dfb8157a3ebe376bbc9de47aaa45e490 Mon Sep 17 00:00:00 2001 From: AI Engineer Date: Tue, 5 May 2026 21:57:49 +0800 Subject: [PATCH] chore: update dependencies and remove .gitignore --- .gitignore | 1 - go.mod | 8 +++++++- go.sum | 4 ++++ 3 files changed, 11 insertions(+), 2 deletions(-) delete mode 100644 .gitignore create mode 100644 go.sum diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 08cb523..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -go.sum diff --git a/go.mod b/go.mod index 2862a31..7d4bb64 100644 --- a/go.mod +++ b/go.mod @@ -9,6 +9,12 @@ require ( ) require ( - apigo.cc/go/rand v1.0.4 // indirect + apigo.cc/go/rand v1.0.5 // indirect golang.org/x/sys v0.43.0 // indirect ) + +replace apigo.cc/go/encoding => ../encoding + +replace apigo.cc/go/safe => ../safe + +replace apigo.cc/go/rand => ../rand diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..035bcee --- /dev/null +++ b/go.sum @@ -0,0 +1,4 @@ +golang.org/x/crypto v0.50.0 h1:zO47/JPrL6vsNkINmLoo/PH1gcxpls50DNogFvB5ZGI= +golang.org/x/crypto v0.50.0/go.mod h1:3muZ7vA7PBCE6xgPX7nkzzjiUq87kRItoJQM1Yo8S+Q= +golang.org/x/sys v0.43.0 h1:Rlag2XtaFTxp19wS8MXlJwTvoh8ArU6ezoyFsMyCTNI= +golang.org/x/sys v0.43.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=