From fdeb77821065382f7a4701cc2379b68f1bd5b348 Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Mon, 30 Jun 2025 05:52:39 +0000 Subject: [PATCH] block: Add back UUID crate's `v4` feature That feature was dropped when consolidating the UUID dependency because somehow building the whole project worked. The CI system was happy. However, building the block crate alone is broken. The vhdx code uses Uuid::new_v4, which requires `v4` to be enabled. Add the feature back. Signed-off-by: Wei Liu --- block/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/block/Cargo.toml b/block/Cargo.toml index 26fd70bb1..02bf37eb0 100644 --- a/block/Cargo.toml +++ b/block/Cargo.toml @@ -18,7 +18,7 @@ remain = "0.2.15" serde = { version = "1.0.208", features = ["derive"] } smallvec = "1.13.2" thiserror = { workspace = true } -uuid = { workspace = true } +uuid = { workspace = true, features = ["v4"] } virtio-bindings = { workspace = true, features = ["virtio-v5_0_0"] } virtio-queue = { workspace = true } vm-memory = { workspace = true, features = [