From 3010288d50a7dd3435f14a74bae6cc28b67f91ad Mon Sep 17 00:00:00 2001 From: wiedld Date: Wed, 21 Aug 2024 13:45:31 -0700 Subject: [PATCH] chore: use workspace tokio and add feature --- Cargo.toml | 2 +- datafusion/common-runtime/Cargo.toml | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ae344a46a1bd..82afbb2817a8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -138,7 +138,7 @@ serde_json = "1" sqlparser = { version = "0.50.0", features = ["visitor"] } tempfile = "3" thiserror = "1.0.44" -tokio = { version = "1.36", features = ["macros", "rt", "sync"] } +tokio = { version = "1.36", features = ["macros", "rt", "sync", "rt-multi-thread"] } url = "2.2" [profile.release] diff --git a/datafusion/common-runtime/Cargo.toml b/datafusion/common-runtime/Cargo.toml index b417d29df283..c10436087675 100644 --- a/datafusion/common-runtime/Cargo.toml +++ b/datafusion/common-runtime/Cargo.toml @@ -37,6 +37,3 @@ path = "src/lib.rs" [dependencies] tokio = { workspace = true } - -[dev-dependencies] -tokio = { version = "1.36", features = ["rt", "rt-multi-thread", "time"] }