Move datafusion-federation to dev-dependencies - #62
Merged
Merged
Conversation
The library crate does not use datafusion-federation; only the flight-sql example does. Fixes #60
Cargo.lock is not tracked, so a fresh resolve picks 0.5.6, which requires datafusion 55 while the workspace is on 54. That builds two datafusion trees and breaks datafusion-flight-sql-table-provider. Pin until the datafusion 55 upgrade lands. Refs #60
backkem
added this pull request to stack #65
September 12, 2026 18:35
hozan23
approved these changes
Sep 12, 2026
Contributor
|
🙏 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The library crate does not use
datafusion-federation; the only importer isexamples/flight-sql.rs. Moving it to[dev-dependencies]drops it from the published crate's dependency graph.The
[workspace.dependencies]entry stays:datafusion-flight-sql-table-providerstill uses it.Closes #60