From fc604a567b2feb325e0b2898c8223976632b39df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Tue, 22 Jul 2025 17:14:53 +0400 Subject: [PATCH] chore(bench): fix could not find `time` in `tokio` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marc-André Lureau --- benches/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benches/Cargo.toml b/benches/Cargo.toml index b5f69ca2..8124d337 100644 --- a/benches/Cargo.toml +++ b/benches/Cargo.toml @@ -19,7 +19,7 @@ ironrdp = { path = "../crates/ironrdp", features = [ "__bench", ] } pico-args = "0.5.0" -tokio = { version = "1", features = ["sync", "fs"] } +tokio = { version = "1", features = ["sync", "fs", "time"] } tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing = { version = "0.1", features = ["log"] }