[package] name = "clustering" version = "0.2.1" edition = "2021" description = "easy way to perform kmeans clustering on arbitrary data" license = "MIT" repository = "https://github.com/xgillard/clustering" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] parallel = [ "dep:rayon" ] logging = [ "dep:log", "dep:env_logger", "dep:lazy_static" ] [dependencies] rand = "0.8" rayon = { version = "1.6", optional = true } log = { version = "0.4", optional = true } env_logger = { version = "0.10", optional = true } lazy_static = { version = "1.4", optional = true }