From 3833d095c15c8b524649cc417a38db14ef677815 Mon Sep 17 00:00:00 2001 From: John Toohey Date: Sun, 15 Oct 2023 12:25:30 +0100 Subject: [PATCH] Make the bytemuck dependency look more like the other dependencies --- Cargo.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1ac7f5cd..760e2574 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -71,8 +71,12 @@ fast-rng = ["rng", "rand"] sha1 = ["sha1_smol"] md5 = ["md-5"] -[dependencies] -bytemuck = { version = "1.14.0", optional = true, features = ["derive"] } + +# Public: Used in trait impls on `Uuid` +[dependencies.bytemuck] +version = "1.14.0" +optional = true +features = ["derive"] # Public: Used in trait impls on `Uuid` [dependencies.serde]