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 <liuwe@microsoft.com>
This commit is contained in:
parent
13c222a879
commit
fdeb778210
1 changed files with 1 additions and 1 deletions
|
|
@ -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 = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue