Omega359 opened a new issue, #9165: URL: https://github.com/apache/arrow-datafusion/issues/9165
### Is your feature request related to a problem or challenge?  Currently the versions and features being used across DataFusion for the tokio crate are not consistent. Pulling tokio into the root level and workspace = true in the other crates would allow for a consistent versioning for tokio. ### Describe the solution you'd like ``` tokio = { version = "1.36", features = ["macros", "rt", "rt-multi-thread", "sync", "fs", "parking_lot"] } ``` in root level Cargo.toml, ``` tokio = { workspace = true } ``` in the other toml files. ### Describe alternatives you've considered _No response_ ### Additional context _No response_ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
