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
907 changes: 284 additions & 623 deletions Cargo.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
members = [
"crates/lance-graph",
"crates/lance-graph-catalog",
"crates/lance-graph-python",
# lance-graph-python excluded: pyarrow `links = "python"` conflict with pyo3.
# Build separately with `maturin develop`.
]
Comment on lines 2 to 7

Choose a reason for hiding this comment

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

P1 Badge Exclude the Python crate when removing it from workspace members

Removing crates/lance-graph-python from workspace.members without adding it to workspace.exclude (or adding an empty [workspace] in that crate) makes Cargo reject the crate as an in-tree non-member: cargo check --manifest-path crates/lance-graph-python/Cargo.toml now fails with “current package believes it's in a workspace when it's not.” This is an immediate regression because .github/workflows/release.yml still runs that exact cargo check command for the Python crate.

Useful? React with 👍 / 👎.

resolver = "2"
Loading