git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
102 lines
2.6 KiB
TOML
102 lines
2.6 KiB
TOML
[package]
|
|
name = "ruvector-core"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
readme = "README.md"
|
|
description = "High-performance Rust vector database core with HNSW indexing"
|
|
|
|
[dependencies]
|
|
# Core functionality
|
|
redb = { workspace = true, optional = true }
|
|
memmap2 = { workspace = true, optional = true }
|
|
hnsw_rs = { workspace = true, optional = true }
|
|
simsimd = { workspace = true, optional = true }
|
|
rayon = { workspace = true, optional = true }
|
|
crossbeam = { workspace = true, optional = true }
|
|
|
|
# Serialization
|
|
rkyv = { workspace = true }
|
|
bincode = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
# Error handling
|
|
thiserror = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
# Math and numerics
|
|
ndarray = { workspace = true, features = ["serde"] }
|
|
rand = { workspace = true }
|
|
rand_distr = { workspace = true }
|
|
|
|
# Performance
|
|
dashmap = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
|
|
# Time and UUID
|
|
chrono = { workspace = true }
|
|
uuid = { workspace = true, features = ["v4"] }
|
|
|
|
# HTTP client for API embeddings (not available in WASM)
|
|
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "rustls-tls"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
criterion = { workspace = true }
|
|
proptest = { workspace = true }
|
|
mockall = { workspace = true }
|
|
tempfile = "3.13"
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
[[bench]]
|
|
name = "distance_metrics"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "hnsw_search"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "quantization_bench"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "batch_operations"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "comprehensive_bench"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "real_benchmark"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "bench_simd"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "bench_memory"
|
|
harness = false
|
|
|
|
[features]
|
|
default = ["simd", "storage", "hnsw", "api-embeddings", "parallel"]
|
|
simd = ["simsimd"] # SIMD acceleration (not available in WASM)
|
|
parallel = ["rayon", "crossbeam"] # Parallel processing (not available in WASM)
|
|
storage = ["redb", "memmap2"] # File-based storage (not available in WASM)
|
|
hnsw = ["hnsw_rs"] # HNSW indexing (not available in WASM due to mmap dependency)
|
|
memory-only = [] # Pure in-memory storage for WASM
|
|
uuid-support = [] # Deprecated: uuid is now always included
|
|
real-embeddings = [] # Feature flag for embedding provider API (use ApiEmbedding for production)
|
|
api-embeddings = ["reqwest"] # API-based embeddings (not available in WASM)
|
|
|
|
[lib]
|
|
crate-type = ["rlib"]
|
|
bench = false
|