-
Notifications
You must be signed in to change notification settings - Fork 345
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (45 loc) · 1.24 KB
/
Cargo.toml
File metadata and controls
54 lines (45 loc) · 1.24 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
[package]
name = "ruvector-math"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
description = "Advanced mathematics for next-gen vector search: Optimal Transport, Information Geometry, Product Manifolds"
keywords = ["vector-search", "optimal-transport", "wasserstein", "information-geometry", "hyperbolic"]
categories = ["mathematics", "science", "algorithms"]
[features]
default = ["std"]
std = []
simd = []
parallel = ["rayon"]
serde = ["dep:serde"]
[dependencies]
# Core math - pure Rust, no BLAS (WASM compatible)
nalgebra = { version = "0.33", default-features = false, features = ["std"] }
rand = { workspace = true }
rand_distr = { workspace = true }
thiserror = { workspace = true }
# Optional features
rayon = { workspace = true, optional = true }
serde = { workspace = true, optional = true }
[dev-dependencies]
criterion = { workspace = true }
proptest = { workspace = true }
approx = "0.5"
[[bench]]
name = "optimal_transport"
harness = false
[[bench]]
name = "information_geometry"
harness = false
[[bench]]
name = "product_manifold"
harness = false
[[bench]]
name = "tropical"
harness = false
[[bench]]
name = "spectral"
harness = false