Pin chrono <0.4.40 to fix arrow-arith build conflict#422
Open
Pin chrono <0.4.40 to fix arrow-arith build conflict#422
Conversation
chrono 0.4.40+ adds a `quarter()` method to `Datelike` that conflicts with `arrow-arith 53.4.0`'s `ChronoDateExt::quarter()`, causing `error[E0034]: multiple applicable items in scope`. Pin chrono to >=0.4.38,<0.4.40 until arrow-arith is updated. Also centralizes chrono as a workspace dependency with serde feature enabled. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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.
Summary
chronoto>=0.4.38, <0.4.40in workspaceCargo.tomlto avoiderror[E0034]: multiple applicable items in scopecaused by chrono 0.4.40+ addingDatelike::quarter()which conflicts witharrow-arith 53.4.0'sChronoDateExt::quarter()chronoas a workspace dependency (withserdefeature) so all crates use a consistent, pinned versionCargo.tomlfiles updated to referencechrono = { workspace = true }Context
arrow-arith 53.4.0(pulled in bylancedb 0.16→datafusion→arrow) defines aChronoDateExttrait with aquarter()method. Starting in chrono 0.4.40, theDateliketrait also gained aquarter()method, causing ambiguity. The latestarrow-arith(58.x) fixes this but we're pinned to 53.x by lancedb 0.16.Test plan
cargo clippy --workspacepasses without errorscargo test -p orchestratorpasseshook/config.rsunrelated to this change)🤖 Generated with Claude Code