Add base64 simd support#12
Conversation
|
Hi, thanks for your PR. Can you please let me know what the motivation for adding base64 simd support is? This crate is primarily for |
|
@ninjasource using SIMD means smaller code size thanks to instruction level vectorization and this saves a lot of precious space on constrained microcontrollers such as Cortex-M4 where they do have a SIMD execution unit. Also supply chain attack is very hard for Rust if you properly pin dependencies since version policy of Rust crates are immutable (implying idempotency between each build). Just check well before upgrading your code. |
This will require nightly, so it is disabled by default