ruvector-core 0.1.29

High-performance Rust vector database core with HNSW indexing
Documentation
[[bench]]
harness = false
name = "batch_operations"
path = "benches/batch_operations.rs"

[[bench]]
harness = false
name = "comprehensive_bench"
path = "benches/comprehensive_bench.rs"

[[bench]]
harness = false
name = "distance_metrics"
path = "benches/distance_metrics.rs"

[[bench]]
harness = false
name = "hnsw_search"
path = "benches/hnsw_search.rs"

[[bench]]
harness = false
name = "quantization_bench"
path = "benches/quantization_bench.rs"

[[bench]]
harness = false
name = "real_benchmark"
path = "benches/real_benchmark.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.bincode]
features = ["serde"]
version = "2.0.0-rc.3"

[dependencies.chrono]
version = "0.4"

[dependencies.crossbeam]
optional = true
version = "0.8"

[dependencies.dashmap]
version = "6.1"

[dependencies.hnsw_rs]
optional = true
version = "0.3"

[dependencies.memmap2]
optional = true
version = "0.9"

[dependencies.ndarray]
features = ["serde"]
version = "0.16"

[dependencies.once_cell]
version = "1.20"

[dependencies.parking_lot]
version = "0.12"

[dependencies.rand]
version = "0.8"

[dependencies.rand_distr]
version = "0.4"

[dependencies.rayon]
optional = true
version = "1.10"

[dependencies.redb]
optional = true
version = "2.1"

[dependencies.reqwest]
default-features = false
features = ["blocking", "json", "rustls-tls"]
optional = true
version = "0.11"

[dependencies.rkyv]
version = "0.8"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.simsimd]
optional = true
version = "5.9"

[dependencies.thiserror]
version = "2.0"

[dependencies.tracing]
version = "0.1"

[dependencies.uuid]
features = ["v4", "serde", "js", "v4"]
version = "1.11"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"

[dev-dependencies.mockall]
version = "0.13"

[dev-dependencies.proptest]
version = "1.5"

[dev-dependencies.tempfile]
version = "3.13"

[dev-dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3"

[[example]]
name = "embeddings_example"
path = "examples/embeddings_example.rs"

[features]
api-embeddings = ["reqwest"]
default = ["simd", "storage", "hnsw", "api-embeddings", "parallel"]
hnsw = ["hnsw_rs"]
memory-only = []
parallel = ["rayon", "crossbeam"]
real-embeddings = []
simd = ["simsimd"]
storage = ["redb", "memmap2"]
uuid-support = []

[lib]
bench = false
crate-type = ["rlib"]
name = "ruvector_core"
path = "src/lib.rs"

[package]
authors = ["Ruvector Team"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "High-performance Rust vector database core with HNSW indexing"
edition = "2021"
license = "MIT"
name = "ruvector-core"
readme = "README.md"
repository = "https://github.com/ruvnet/ruvector"
rust-version = "1.77"
version = "0.1.29"

[[test]]
name = "advanced_features_integration"
path = "tests/advanced_features_integration.rs"

[[test]]
name = "concurrent_tests"
path = "tests/concurrent_tests.rs"

[[test]]
name = "embeddings_test"
path = "tests/embeddings_test.rs"

[[test]]
name = "hnsw_integration_test"
path = "tests/hnsw_integration_test.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[test]]
name = "property_tests"
path = "tests/property_tests.rs"

[[test]]
name = "stress_tests"
path = "tests/stress_tests.rs"

[[test]]
name = "unit_tests"
path = "tests/unit_tests.rs"