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"] }