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

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ crate-type = ["cdylib"]
# with (ADR 0002), so a revision is the honest way to say which one.
# A local checkout is used instead with a `paths` override in
# `.cargo/config.toml`, which is untracked on purpose.
zudb = { package = "zu", git = "https://github.com/tamnd/zu", rev = "526ac583359f6112bca11bdae3fb43cc6fd76b2e" }
zu-common = { git = "https://github.com/tamnd/zu", rev = "526ac583359f6112bca11bdae3fb43cc6fd76b2e" }
zudb = { package = "zu", git = "https://github.com/tamnd/zu", rev = "9dcb7b42b50f3a802cae62b18d9e99f30efefad1" }
zu-common = { git = "https://github.com/tamnd/zu", rev = "9dcb7b42b50f3a802cae62b18d9e99f30efefad1" }
# The one translation from a result into Arrow, which lives in the engine
# tree so that every client agrees about what a column becomes. `ipc` is
# the only feature this client turns on: the C Data Interface hands over
# a pointer and nothing in a JavaScript runtime can read one, so the way
# out here is the bytes of an IPC stream.
zu-arrow = { git = "https://github.com/tamnd/zu", rev = "526ac583359f6112bca11bdae3fb43cc6fd76b2e", features = ["ipc"] }
zu-arrow = { git = "https://github.com/tamnd/zu", rev = "9dcb7b42b50f3a802cae62b18d9e99f30efefad1", features = ["ipc"] }
# N-API by way of napi-rs (ADR 0002). `napi9` is the version of N-API
# this addon declares it needs, which is what makes one binary work
# across Node 24, Node 26, Electron and Bun without a rebuild: the
Expand Down
Loading