#uuid #simd #guid

no-std uuid-simd

SIMD-accelerated UUID operations

7 releases (4 breaking)

0.8.0 Dec 28, 2022
0.7.0 Jul 23, 2022
0.6.2 Jun 29, 2022
0.5.1 Jun 26, 2022
0.1.0 Nov 12, 2021

#1737 in Parser implementations

Download history 636/week @ 2024-07-20 1178/week @ 2024-07-27 1132/week @ 2024-08-03 650/week @ 2024-08-10 342/week @ 2024-08-17 436/week @ 2024-08-24 668/week @ 2024-08-31 844/week @ 2024-09-07 6800/week @ 2024-09-14 7692/week @ 2024-09-21 12085/week @ 2024-09-28 13210/week @ 2024-10-05 14086/week @ 2024-10-12 15998/week @ 2024-10-19 15047/week @ 2024-10-26 17502/week @ 2024-11-02

64,969 downloads per month
Used in 38 crates (5 directly)

MIT license

195KB
5.5K SLoC

uuid-simd

Crates.io Docs MIT licensed

SIMD-accelerated UUID operations

Documentation: https://docs.rs/uuid-simd

Repository: https://github.com/Nugine/simd


lib.rs:

SIMD-accelerated UUID operations.

Examples

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())

Dependencies

~235KB