From 536743a15dea3c3a811ea6f2227b1e6b68761542 Mon Sep 17 00:00:00 2001 From: Jacob Date: Tue, 22 Apr 2025 00:49:46 -0400 Subject: [PATCH] chore: depend on fewer `tokio` features because the dependencies that need them are declaring them themselves --- entrypoint/Cargo.toml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/entrypoint/Cargo.toml b/entrypoint/Cargo.toml index ddb17e3..355a5fa 100644 --- a/entrypoint/Cargo.toml +++ b/entrypoint/Cargo.toml @@ -32,13 +32,7 @@ pyo3 = { workspace = true, features = [ pyo3-async-runtimes = { workspace = true, features = ["tokio-runtime"] } shadow-rs = { version = "1.0.1", default-features = false } snafu = { workspace = true } -tokio = { workspace = true, features = [ - "macros", - "rt", - "rt-multi-thread", - "sync", - "time", -] } +tokio = { workspace = true, features = ["time"] } tracing = { workspace = true } tracing-appender = "0.2.3" tracing-subscriber = "0.3.17"