From 2dad70d3c7dd21d8bda1fc1cf5e04e7cc3dffb85 Mon Sep 17 00:00:00 2001 From: John Toohey Date: Wed, 18 Oct 2023 07:26:07 +0100 Subject: [PATCH] Added the `bytemuck` optional dependency to `lib.rs` documentation This is so that it is easier to find and more consistent with the other optional dependencies --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index b684b259..5dd12ba2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -108,6 +108,7 @@ //! * `fast-rng` - uses a faster algorithm for generating random UUIDs. //! This feature requires more dependencies to compile, but is just as suitable for //! UUIDs as the default algorithm. +//! * `bytemuck` - adds a `Pod` trait implementation to `Uuid` for byte manipulation //! //! # Unstable features //!