[dependencies.kdtree]
version = "0.7.0"
[dependencies.num-traits]
version = "0.2.18"
[dependencies.rayon]
optional = true
version = "1.10.0"
[features]
default = ["serial"]
parallel = ["dep:rayon"]
serial = []
[lib]
name = "hdbscan"
path = "src/lib.rs"
[package]
authors = ["Tom Whitehead <t.j.whitehead21@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "mathematics", "science"]
description = "HDBSCAN clustering in pure Rust. A huge improvement on DBSCAN, capable of identifying clusters of varying densities."
edition = "2021"
keywords = ["machine-learning", "clustering", "ai", "ml", "dbscan"]
license = "MIT OR Apache-2.0"
name = "hdbscan"
readme = "README.md"
repository = "https://github.com/tom-whitehead/hdbscan"
version = "0.11.0"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "parallel"
path = "tests/parallel.rs"
[[test]]
name = "serial"
path = "tests/serial.rs"