Skip to content
Merged
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
19 changes: 19 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,25 @@ jobs:
- name: Check formatting
run: cargo fmt -- --check

package:
name: Check crates are publishable
runs-on: ubuntu-24.04
timeout-minutes: 20
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- uses: actions-rust-lang/setup-rust-toolchain@a0b538fa0b742a6aa35d6e2c169b4bd06d225a98 # v1
# Catches manifest problems that only surface at publish time (missing
# readme/license files, path dependencies without a version, excluded
# files a crate needs). `--no-verify` skips building each packaged crate,
# which the other jobs already cover. Keep the excludes in sync with
# .github/workflows/cargo-publish.yml.
- name: Package crates
run: |
cargo package --workspace --no-verify \
--exclude lance-arrow-stats \
--exclude lance-arrow-scalar \
--all-features

rustdoc:
runs-on: ubuntu-24.04
timeout-minutes: 30
Expand Down
6 changes: 6 additions & 0 deletions rust/lance-index-core/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# lance-index-core

`lance-index-core` is an internal sub-crate, containing the core traits and types used to
implement index plugins for [Lance](https://github.com/lance-format/lance).

**Important Note**: This crate is **not intended for external usage**.
Loading