Crates.io | binascii |
lib.rs | binascii |
version | 0.1.4 |
source | src |
created_at | 2018-08-01 23:24:22.137639 |
updated_at | 2020-02-17 22:18:26.224921 |
description | Useful no-std binascii operations including base64, base32 and base16 (hex) |
homepage | |
repository | https://github.com/naim94a/binascii-rs |
max_upload_size | |
id | 77024 |
size | 19,827 |
Rust 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"] }
binascii
?no-std
is supported for your bare-metal & embedded projects.