6 个版本 (3 个重大更新)
0.8.0 | 2022年12月28日 |
---|---|
0.7.0 | 2022年7月23日 |
0.6.2 | 2022年6月29日 |
0.5.1 | 2022年6月26日 |
0.5.0 | 2021年12月31日 |
#122 in 解析器实现
1,545,457 每月下载量
在 977 个crate中使用 (直接使用 23 个)
220KB
6.5K SLoC
base64-simd
SIMD 加速的 base64 编码和解码。
lib.rs
:
SIMD 加速的 base64 编码和解码。
示例
let bytes = b"hello world";
let base64 = base64_simd::STANDARD;
let encoded = base64.encode_to_string(bytes);
assert_eq!(encoded, "aGVsbG8gd29ybGQ=");
let decoded = base64.decode_to_vec(encoded).unwrap();
assert_eq!(decoded, bytes);