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
133 changes: 132 additions & 1 deletion java/lance-jni/Cargo.lock

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

3 changes: 3 additions & 0 deletions java/lance-jni/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ lance-linalg = { path = "../../rust/lance-linalg" }
lance-index = { path = "../../rust/lance-index" }
lance-io = { path = "../../rust/lance-io" }
lance-namespace = { path = "../../rust/lance-namespace" }
lance-namespace-impls = { path = "../../rust/lance-namespace-impls", features = ["rest", "rest-adapter"] }
lance-core = { path = "../../rust/lance-core" }
lance-file = { path = "../../rust/lance-file" }
arrow = { version = "56.1", features = ["ffi"] }
Expand All @@ -34,7 +35,9 @@ tokio = { version = "1.23", features = [
async-trait = "0.1"
snafu = "0.8"
jni = "0.21.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1" }
bytes = "1.11"
log = "0.4"
env_logger = "0.11.7"
uuid = { version = "1.17.0", features = ["v4"] }
Expand Down
1 change: 1 addition & 0 deletions java/lance-jni/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ mod file_reader;
mod file_writer;
mod fragment;
mod merge_insert;
mod namespace;
mod optimize;
mod schema;
mod sql;
Expand Down
Loading
Loading