mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-02 14:22:24 -06:00
[chore]: Bump github.com/gin-contrib/cors from 1.4.0 to 1.5.0 (#2388)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
e4e0a5e3f6
commit
66b77acb1c
169 changed files with 173005 additions and 56262 deletions
10
vendor/github.com/chenzhuoyu/base64x/base64x.go
generated
vendored
10
vendor/github.com/chenzhuoyu/base64x/base64x.go
generated
vendored
|
|
@ -71,7 +71,7 @@ func (self Encoding) Encode(out []byte, src []byte) {
|
|||
//
|
||||
// It will also update the length of out.
|
||||
func (self Encoding) EncodeUnsafe(out *[]byte, src []byte) {
|
||||
__b64encode(out, &src, int(self) | archFlags)
|
||||
b64encode(out, &src, int(self) | archFlags)
|
||||
}
|
||||
|
||||
// EncodeToString returns the base64 encoding of src.
|
||||
|
|
@ -120,7 +120,7 @@ func (self Encoding) Decode(out []byte, src []byte) (int, error) {
|
|||
//
|
||||
// It will also update the length of out.
|
||||
func (self Encoding) DecodeUnsafe(out *[]byte, src []byte) (int, error) {
|
||||
if n := __b64decode(out, mem2addr(src), len(src), int(self) | archFlags); n >= 0 {
|
||||
if n := b64decode(out, mem2addr(src), len(src), int(self) | archFlags); n >= 0 {
|
||||
return n, nil
|
||||
} else {
|
||||
return 0, base64.CorruptInputError(-n - 1)
|
||||
|
|
@ -149,9 +149,3 @@ func (self Encoding) DecodedLen(n int) int {
|
|||
return n * 6 / 8
|
||||
}
|
||||
}
|
||||
|
||||
func init() {
|
||||
if hasAVX2() {
|
||||
archFlags = _MODE_AVX2
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue