ruvector/crates/ruvector-node/build.rs
Claude 9ac0fd43e8 feat: Implement Ruvector Phase 1 foundation
- Initialize complete Rust workspace with 5 crates
- Implement SIMD-optimized distance metrics (SimSIMD)
- Add storage layer with redb + memory-mapped vectors
- Implement quantization (Scalar, Product, Binary)
- Create HNSW and Flat index structures
- Build main VectorDB API with comprehensive tests
- Set up claude-flow orchestration system
- Configure NAPI-RS and WASM bindings infrastructure
- Add benchmarking suite with criterion
- 14/16 tests passing (87.5%)

Technical highlights:
- Zero-copy memory access via memmap2
- Lock-free concurrent operations with dashmap
- Type-safe error handling with thiserror
- Full workspace configuration with profiles

Next phases: HNSW integration, AgenticDB API compatibility,
multi-platform deployment, advanced techniques.
2025-11-19 13:39:33 +00:00

5 lines
65 B
Rust

extern crate napi_build;
fn main() {
napi_build::setup();
}