0.1.4 - This version may not be safe as it has not been updated for a long time. Find out if your coding project uses this component and get notified of any reported security vulnerabilities with Meterian-X Open Source Security Platform
Maintain your licence declarations and avoid unwanted licences to protect your IP the way you intended.
MIT - MIT LicenseRust implementation of useful binascii functions.
binascii
to your package's Cargo.toml
:
[dependencies]
binascii = "0.1"
"decode"
feature. To enable only encoders, use the "encode"
feature:
# Enable encoders only.
[dependencies]
binascii = { version = "0.1", default-features = false, features = ["encode"] }
# Enable decoders only.
[dependencies]
binascii = { version = "0.1", default-features = false, features = ["decode"] }
no-std
is supported for your bare-metal & embedded projects.