clump 0.4.2

Dense clustering primitives (k-means, DBSCAN, HDBSCAN, EVoC, COP-Kmeans, DenStream, correlation clustering)
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "clump"
version = "0.4.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Dense clustering primitives (k-means, DBSCAN, HDBSCAN, EVoC, COP-Kmeans, DenStream, correlation clustering)"
homepage = "https://github.com/arclabs561/clump"
documentation = "https://docs.rs/clump"
readme = "README.md"
keywords = [
    "clustering",
    "kmeans",
    "ml",
    "algorithms",
]
categories = [
    "algorithms",
    "science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/arclabs561/clump"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = []
parallel = ["dep:rayon"]

[lib]
name = "clump"
path = "src/lib.rs"

[[example]]
name = "clustering"
path = "examples/clustering.rs"

[[test]]
name = "property_tests"
path = "tests/property_tests.rs"

[[bench]]
name = "clustering"
path = "benches/clustering.rs"
harness = false

[dependencies.rand]
version = "0.9"

[dependencies.rayon]
version = "1.10"
optional = true

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.criterion]
version = "0.7"

[dev-dependencies.proptest]
version = "1.9"