-
Notifications
You must be signed in to change notification settings - Fork 297
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (45 loc) · 1.36 KB
/
Cargo.toml
File metadata and controls
55 lines (45 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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"