Upgrade data-encoding to 2.5.0

This project was upgraded with external_updater.
Usage: tools/external_updater/updater.sh update external/rust/crates/data-encoding
For more info, check https://cs.android.com/android/platform/superproject/+/main:tools/external_updater/README.md

Test: TreeHugger
Change-Id: I9f0cdbbab02ba778a045aca2003bf1e566dacbe0
7 files changed
tree: 090d8fd7c304c662f43d4d8cfd0d77a08a2a8138
  1. src/
  2. .cargo_vcs_info.json
  3. Android.bp
  4. Cargo.toml
  5. Cargo.toml.orig
  6. cargo_embargo.json
  7. LICENSE
  8. METADATA
  9. MODULE_LICENSE_MIT
  10. OWNERS
  11. README.md
README.md

CI Status Coverage Status

This library provides the following common encodings:

NameDescription
HEXLOWERlowercase hexadecimal
HEXLOWER_PERMISSIVElowercase hexadecimal (case-insensitive decoding)
HEXUPPERuppercase hexadecimal
HEXUPPER_PERMISSIVEuppercase hexadecimal (case-insensitive decoding)
BASE32RFC4648 base32
BASE32_NOPADRFC4648 base32 (no padding)
BASE32_DNSSECRFC5155 base32
BASE32_DNSCURVEDNSCurve base32
BASE32HEXRFC4648 base32hex
BASE32HEX_NOPADRFC4648 base32hex (no padding)
BASE64RFC4648 base64
BASE64_NOPADRFC4648 base64 (no padding)
BASE64_MIMERFC2045-like base64
BASE64URLRFC4648 base64url
BASE64URL_NOPADRFC4648 base64url (no padding)

It also provides the possibility to define custom little-endian ASCII base-conversion encodings for bases of size 2, 4, 8, 16, 32, and 64 (for which all above use-cases are particular instances).

See the documentation for more details.