-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 946 Bytes
/
Cargo.toml
File metadata and controls
24 lines (22 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "single-clustering"
version = "0.6.1"
edition = "2024"
authors = ["Ian F. Diks"]
homepage = "https://singlerust.com"
repository = "https://github.com/SingleRust/single-clustering"
license-file = "LICENSE.md"
readme = "README.md"
description = "A high-performance network clustering library implementing community detection algorithms like Louvain and Leiden. Features efficient graph representation, abstract grouping systems, and K-NN graph creation from high-dimensional data. Provides parallel computation support via Rayon for handling large networks."
[dependencies]
anyhow = "1.0.100"
kiddo = {version = "5.2.2" }
nalgebra-sparse = "0.10.0"
ndarray = {version = "0.16.1" , features = ["rayon"]}
num-traits = "0.2.19"
petgraph = { version = "0.8.2", features = ["rayon"] }
rayon = "1.10.0"
single-utilities = "0.8.6"
rand = "0.9.0"
rand_chacha = {version = "0.9.0"}
hnsw_rs = {version = "0.3.2", features = ["simdeez_f"]}