Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
159 changes: 104 additions & 55 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ members = [
[workspace.dependencies]
anyhow = "1.0"
arc-swap = { version = "1.8" }
arrow-array = { version = "57.0", default-features = false }
arrow-array = { version = "58.1", default-features = false }
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Align Arrow workspace deps to one major version

Bumping only arrow-array to 58.1 while leaving arrow-schema/arrow-buffer at 57.x introduces two incompatible Arrow type universes in the workspace (as reflected in Cargo.lock, where lading and lading-capture now depend on arrow-array 58.1.0 plus arrow-schema 57.3.0/arrow-buffer 57.3.0). Crates like lading_capture/src/formats/parquet.rs mix these APIs directly (MapArray/RecordBatch with Field/Schema/OffsetBuffer), which will fail with mismatched-type errors once the project is checked in a normal toolchain. Please upgrade the related Arrow crates together (or keep arrow-array on 57.x).

Useful? React with 👍 / 👎.

arrow-buffer = { version = "57.0", default-features = false }
arrow-schema = { version = "57.0", default-features = false }
bytes = "1.10"
Expand Down
Loading