# 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 = "clustering" version = "0.2.1" description = "easy way to perform kmeans clustering on arbitrary data" readme = "README.md" license = "MIT" repository = "https://github.com/xgillard/clustering" [dependencies.env_logger] version = "0.10" optional = true [dependencies.lazy_static] version = "1.4" optional = true [dependencies.log] version = "0.4" optional = true [dependencies.rand] version = "0.8" [dependencies.rayon] version = "1.6" optional = true [features] logging = [ "dep:log", "dep:env_logger", "dep:lazy_static", ] parallel = ["dep:rayon"]