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

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

2 changes: 2 additions & 0 deletions 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-core",
"rust/lance-io",
"rust/lance-linalg",
"rust/lance-namespace",
Expand Down Expand Up @@ -67,6 +68,7 @@ lance-encoding = { version = "=8.1.0-beta.0", path = "./rust/lance-encoding" }
lance-file = { version = "=8.1.0-beta.0", path = "./rust/lance-file" }
lance-geo = { version = "=8.1.0-beta.0", path = "./rust/lance-geo" }
lance-index = { version = "=8.1.0-beta.0", path = "./rust/lance-index" }
lance-index-core = { version = "=8.1.0-beta.0", path = "./rust/lance-index-core" }
lance-io = { version = "=8.1.0-beta.0", path = "./rust/lance-io", default-features = false }
lance-linalg = { version = "=8.1.0-beta.0", path = "./rust/lance-linalg" }
lance-namespace = { version = "=8.1.0-beta.0", path = "./rust/lance-namespace" }
Expand Down
38 changes: 38 additions & 0 deletions rust/lance-index-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
[package]
name = "lance-index-core"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
readme = "README.md"
description = "Lance index core traits and abstract types"
keywords.workspace = true
categories.workspace = true
rust-version.workspace = true

[dependencies]
async-recursion.workspace = true
async-trait.workspace = true
arrow-array.workspace = true
arrow-schema.workspace = true
arrow-select.workspace = true
bytes.workspace = true
datafusion.workspace = true
datafusion-common.workspace = true
datafusion-expr.workspace = true
futures.workspace = true
lance-core.workspace = true
lance-derive.workspace = true
lance-io = { workspace = true }
lance-select.workspace = true
prost.workspace = true
prost-types.workspace = true
roaring.workspace = true
serde.workspace = true
serde_json.workspace = true
tokio.workspace = true
tracing.workspace = true

[lints]
workspace = true
Loading
Loading