From bdd363099180985702ed63b1be25b4bf4cbd85d1 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Wed, 28 Jan 2026 21:01:50 -0500 Subject: [PATCH] Enable timers in the Tokio runtime --- src/taskchampion-cpp/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/taskchampion-cpp/src/lib.rs b/src/taskchampion-cpp/src/lib.rs index ea1177181..256221691 100644 --- a/src/taskchampion-cpp/src/lib.rs +++ b/src/taskchampion-cpp/src/lib.rs @@ -309,6 +309,7 @@ impl From for CppError { fn rt() -> tokio::runtime::Handle { tokio::runtime::Builder::new_current_thread() + .enable_time() .build() .unwrap() .handle()