-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
42 lines (36 loc) · 878 Bytes
/
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
[package]
name = "gathers"
version = "0.3.1"
edition = "2021"
authors = ["Keming <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/kemingy/gathers"
description = "Clustering algorithms."
documentation = "https://docs.rs/gathers"
keywords = ["cluster", "kmeans", "rabitq", "machine-learning", "vector-search"]
categories = ["algorithms", "science"]
rust-version = "1.83"
[dependencies]
argh = "0.1.12"
bytemuck = "1.20.0"
env_logger = "0.11.5"
faer = { version = "0.20.1", default-features = false, features = ["qr"] }
log = "0.4.22"
num-traits = "0.2.19"
pulp = "0.21.0"
rand = "0.8.5"
rand_distr = "0.4.3"
rayon = "1.10.0"
[profile.dev.package.faer]
opt-level = 3
[profile.perf]
inherits = "release"
debug = true
[profile.bench]
debug=true
[dev-dependencies]
criterion = "0.5.1"
[[bench]]
name = "bench"
harness = false