eclipse-uprotocol / up-rust

uProtocol Language Specific Library for Rust
Apache License 2.0
9 stars 8 forks source link

Do not use uuid crate for de/serializing UUIDs #103

Closed sophokles73 closed 2 months ago

sophokles73 commented 2 months ago

The uuid crate has been replaced with the uuid_simd crate for serializing/parsing UUIDs to/from hyphenated strings.

The uuid_simd crate makes use of SIMD instructions, if available on the CPU during runtime, which reduces the parsing time by up to 40%.