Update maps.rs

added missing = from base64 charset. It was missing because not technically official part of charset, only used in padding, we use it in mapping.
This commit is contained in:
viraladmin 2023-10-13 14:51:08 -06:00 committed by GitHub
parent db37a32bad
commit ce9de3d651
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -66,6 +66,7 @@
'9' => Some((239, 197, 183)), '9' => Some((239, 197, 183)),
'/' => Some((199, 187, 241)), '/' => Some((199, 187, 241)),
'+' => Some((195, 216, 223)), '+' => Some((195, 216, 223)),
'=' => Some((193, 211, 184)),
_ => None, _ => None,
} }
} }
@ -135,6 +136,7 @@
((239, 197, 183), '9'), ((239, 197, 183), '9'),
((199, 187, 241), '/'), ((199, 187, 241), '/'),
((195, 216, 223), '+'), ((195, 216, 223), '+'),
((193, 211, 184), '='),
] ]
.iter() .iter()
.cloned() .cloned()