[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:
dependabot[bot] 2023-11-27 13:15:03 +00:00 committed by GitHub
commit 66b77acb1c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
169 changed files with 173005 additions and 56262 deletions

View file

@ -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
}
}