From 168435cc75476d5b9eeaa0fd648b7c06f00d08d0 Mon Sep 17 00:00:00 2001 From: Will Killian Date: Mon, 22 Jun 2026 09:44:28 -0400 Subject: [PATCH] fix: enable tokio time for core package builds Signed-off-by: Will Killian --- crates/core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 4b1579a9..595bd577 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -83,7 +83,7 @@ schemars = { version = "0.8", optional = true } chrono = { version = "0.4", features = ["serde"] } bitflags = { version = "2", features = ["serde"] } thiserror = "2" -tokio = { version = "1", default-features = false, features = ["rt", "macros", "sync"] } +tokio = { version = "1", default-features = false, features = ["rt", "macros", "sync", "time"] } tokio-stream = { version = "0.1", default-features = false, features = ["sync"] } typed-builder = "0.23.2" futures-util = { version = "0.3", optional = true }