7个版本 (4个重大变更)
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.1.0
|
2021年11月12日
|
#1792 在 解析器实现
每月2,209次下载
在 4 个crate中使用 (3个直接使用)
SIMD加速的UUID操作。
示例
use uuid::Uuid;
use uuid_simd::UuidExt;
let text = "67e55044-10b1-426f-9247-bb680e5fe0c8";
let uuid: Uuid = Uuid::parse(text.as_bytes()).unwrap();
println!("{}", uuid.format_simple())