-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (39 loc) · 1.05 KB
/
Cargo.toml
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
[package]
name = "vector_quantizer"
version = "0.0.2"
edition = "2021"
authors = ["Michele Riva <[email protected]>"]
description = "Simple vector quantization utilities and functions."
license = "GPL-3.0-only"
repository = "https://github.com/oramasearch/vector_quantizer"
readme = "README.md"
keywords = ["product_quantization", "vector_quantization", "embeddings", "quantization"]
categories = ["algorithms"]
[dependencies]
anyhow = "1.0.93"
ndarray = { version = "0.16.1", features = ["rayon"] }
ndarray-stats = "0.6.0"
rand = "0.9.0-alpha.2"
ndarray-rand = "0.15.0"
rand_distr = "0.4.3"
rayon = "1.10.0"
log = "0.4.22"
thiserror = "2.0.3"
env_logger = "0.11.5"
serde = { version = "1.0.215", features = ["derive"] }
numpy = "0.23.0"
num-traits = "0.2.19"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "pq_bench"
harness = false
[[bin]]
name = "example"
path = "src/bin/example.rs"
[[bin]]
name = "readme_example"
path = "src/bin/readme_example.rs"
[[bin]]
name = "quality_check"
path = "src/bin/quality_check.rs"