Squashed 'vendor/ruvector/' content from commit b64c2172
git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
This commit is contained in:
55
crates/ruvector-hyperbolic-hnsw/Cargo.toml
Normal file
55
crates/ruvector-hyperbolic-hnsw/Cargo.toml
Normal file
@@ -0,0 +1,55 @@
|
||||
[package]
|
||||
name = "ruvector-hyperbolic-hnsw"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
rust-version = "1.77"
|
||||
license = "MIT OR Apache-2.0"
|
||||
authors = ["RuVector Team <team@ruvector.dev>"]
|
||||
repository = "https://github.com/ruvnet/ruvector"
|
||||
homepage = "https://ruv.io/ruvector"
|
||||
documentation = "https://docs.rs/ruvector-hyperbolic-hnsw"
|
||||
description = "Hyperbolic (Poincare ball) embeddings with HNSW integration for hierarchy-aware vector search, enabling efficient similarity search in non-Euclidean spaces for taxonomies, ontologies, and hierarchical data"
|
||||
keywords = ["hyperbolic", "poincare", "hnsw", "vector-search", "hierarchy"]
|
||||
categories = ["algorithms", "science", "mathematics"]
|
||||
readme = "README.md"
|
||||
|
||||
[lib]
|
||||
crate-type = ["rlib"]
|
||||
|
||||
[features]
|
||||
default = ["simd", "parallel"]
|
||||
simd = []
|
||||
parallel = ["rayon"]
|
||||
wasm = []
|
||||
|
||||
[dependencies]
|
||||
# Math and numerics (exact versions as specified)
|
||||
nalgebra = "0.34.1"
|
||||
ndarray = "0.17.1"
|
||||
|
||||
# Parallel processing
|
||||
rayon = { version = "1.10", optional = true }
|
||||
|
||||
# Serialization
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
|
||||
# Error handling
|
||||
thiserror = "2.0"
|
||||
|
||||
# Random number generation
|
||||
rand = "0.8"
|
||||
rand_distr = "0.4"
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = { version = "0.5", features = ["html_reports"] }
|
||||
approx = "0.5"
|
||||
proptest = "1.5"
|
||||
|
||||
[[bench]]
|
||||
name = "hyperbolic_bench"
|
||||
harness = false
|
||||
|
||||
[[test]]
|
||||
name = "math_tests"
|
||||
path = "tests/math_tests.rs"
|
||||
Reference in New Issue
Block a user