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

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

12 changes: 12 additions & 0 deletions crates/ruvector-diskann/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,21 @@ parking_lot = "0.12"
bytemuck = { version = "1.14", features = ["derive"] }
simsimd = { workspace = true, optional = true }

[target.'cfg(target_arch = "wasm32")'.dependencies]
# `rand` (used by PQ k-means training) pulls getrandom 0.2 transitively, which
# needs the "js" backend to build for wasm32-unknown-unknown. Same shim as
# ruvector-wasm/Cargo.toml.
getrandom02 = { package = "getrandom", version = "0.2", features = ["js"] }

[dev-dependencies]
tempfile = "3.9"

[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
# wasm32 SIMD128 correctness + A/B timing tests (`wasm-pack test --node`).
wasm-bindgen-test = "0.3"
wasm-bindgen = { workspace = true }
js-sys = { workspace = true }

# Workspace cleanup pass: research-tier crate, doc/style churn deferred. Correctness + suspicious lints stay denied.
[lints.rust]
unexpected_cfgs = { level = "allow", priority = -1 }
Expand Down
Loading
Loading