From 4a607ed82ddaede31d414f88dc4762a515974271 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Thu, 26 Mar 2026 23:12:08 +0100 Subject: [PATCH] performance-metrics: Enable io_uring feature on block crate Enable the io_uring feature so that QcowDiskAsync and QcowAsync are available for async path micro benchmarks. Signed-off-by: Anatol Belski --- performance-metrics/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/performance-metrics/Cargo.toml b/performance-metrics/Cargo.toml index 516ea9e0a..776a46fc2 100644 --- a/performance-metrics/Cargo.toml +++ b/performance-metrics/Cargo.toml @@ -5,7 +5,7 @@ name = "performance-metrics" version = "0.1.0" [dependencies] -block = { path = "../block" } +block = { path = "../block", features = ["io_uring"] } clap = { workspace = true, features = ["wrap_help"] } dirs = { workspace = true } libc = { workspace = true }