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
55 changes: 55 additions & 0 deletions Cargo.lock

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

9 changes: 8 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ members = [
"rust/lance-file",
"rust/lance-geo",
"rust/lance-index",
"rust/lance-index-plugin-abi",
"rust/lance-io",
"rust/lance-linalg",
"rust/lance-namespace",
Expand All @@ -26,7 +27,11 @@ members = [
"rust/arrow-scalar",
"rust/arrow-stats",
]
exclude = ["python", "java/lance-jni"]
exclude = [
"python",
"java/lance-jni",
"rust/lance/tests/xabi_plugins/mock_btree",
]
# Python package needs to be built by maturin.
resolver = "3"

Expand Down Expand Up @@ -67,6 +72,7 @@ lance-encoding = { version = "=8.0.0-beta.9", path = "./rust/lance-encoding" }
lance-file = { version = "=8.0.0-beta.9", path = "./rust/lance-file" }
lance-geo = { version = "=8.0.0-beta.9", path = "./rust/lance-geo" }
lance-index = { version = "=8.0.0-beta.9", path = "./rust/lance-index" }
lance-index-plugin-abi = { version = "=8.0.0-beta.9", path = "./rust/lance-index-plugin-abi" }
lance-io = { version = "=8.0.0-beta.9", path = "./rust/lance-io", default-features = false }
lance-linalg = { version = "=8.0.0-beta.9", path = "./rust/lance-linalg" }
lance-namespace = { version = "=8.0.0-beta.9", path = "./rust/lance-namespace" }
Expand Down Expand Up @@ -208,6 +214,7 @@ url = "2.5.7"
uuid = { version = "1.2", features = ["v4", "serde"] }
wiremock = "0.6"
pretty_assertions = "1.4.0"
xabi = "0.1.0"

[profile.bench]
opt-level = 3
Expand Down
47 changes: 46 additions & 1 deletion python/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 python/python/tests/test_memory_leaks.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def access_index_stats() -> None:
d.stats.index_stats(idx.name)

assert_noleaks(
access_index_stats, iterations=1000, threshold_mb=2.0, check_interval=25
access_index_stats, iterations=1000, threshold_mb=3.0, check_interval=25
)


Expand Down
26 changes: 26 additions & 0 deletions rust/lance-index-plugin-abi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[package]
name = "lance-index-plugin-abi"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
description = "Stable ABI contracts for Lance index plugins"
readme.workspace = true
keywords.workspace = true
categories.workspace = true
rust-version.workspace = true

[dependencies]
arrow-array.workspace = true
arrow-ipc.workspace = true
arrow-schema.workspace = true
async-trait.workspace = true
futures.workspace = true
xabi.workspace = true

[lints]
workspace = true

[dev-dependencies]
xabi-assert = "0.1.0"
Loading
Loading