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

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

4 changes: 2 additions & 2 deletions crates/ruvector-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ tokenizers = { version = "0.20", default-features = false, features = ["onig"],
hf-hub = { version = "0.4", optional = true }

# Native (pure-Rust) local embeddings via lattice-embed (not available in WASM).
# NOTE: lattice-embed 0.6 requires Rust >= 1.93 (edition 2024). Cargo cannot
# NOTE: lattice-embed 0.7 requires Rust >= 1.93 (edition 2024). Cargo cannot
# express a per-feature `rust-version`, so enabling the `lattice-embeddings`
# feature raises the effective MSRV above this crate's workspace-inherited
# 1.77 for anyone who turns it on. The default build is unaffected.
lattice-embed = { version = "0.6.1", optional = true }
lattice-embed = { version = "0.7.1", optional = true }
tokio = { workspace = true, optional = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/ruvllm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ objc = { version = "0.2", optional = true }

# Lattice pure-Rust Qwen3.5 inference engine, Metal GPU forward pass
# (macOS only, optional, default-OFF — see the `lattice` feature below).
lattice-inference = { version = "0.6.1", optional = true, default-features = false, features = ["metal-gpu", "f16", "std"] }
lattice-inference = { version = "0.7.1", optional = true, default-features = false, features = ["metal-gpu", "f16", "std"] }

# Core ML bindings (macOS/iOS) - for Apple Neural Engine acceleration
objc2 = { version = "0.6", optional = true }
Expand Down
90 changes: 15 additions & 75 deletions examples/ruvLLM/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 examples/ruvLLM/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ real-inference = ["candle-core", "candle-nn", "candle-transformers", "hf-hub", "
# HuggingFace export for learned patterns and LoRA weights
hf-export = ["ruvector-sona"]
# Real pretrained sentence embeddings via lattice-embed (through ruvector-core).
# Opt-in: enabling this raises the effective MSRV to Rust >= 1.93 (lattice-embed 0.6,
# Opt-in: enabling this raises the effective MSRV to Rust >= 1.93 (lattice-embed 0.7,
# edition 2024) and makes a pretrained model a runtime dependency. Off by default so the
# base package keeps its current build/footprint; the embedder backend is selected at
# runtime when this feature is compiled in.
Expand Down
Loading