# 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 = "mixturs" version = "0.1.0" authors = ["Egor Dmitriev"] description = "Unofficial implementation of Dirichlet Process Mixture Model Split/Merge algorithm" homepage = "https://github.com/EgorDm/mixturs" documentation = "https://docs.rs/mixturs/" readme = "README.md" keywords = [ "probability", "statistics", "stats", "clustering", "math", ] categories = [ "science", "computer-vision", "mathematics", ] license = "MIT" repository = "https://github.com/EgorDm/mixturs" [[example]] name = "clustering" required-features = [ "serde", "plot", ] [[example]] name = "clustering_multithread" required-features = [ "serde", "plot", ] [[bench]] name = "mixturs_bench" path = "benches/lib.rs" harness = false [dependencies.itertools] version = "0.10" [dependencies.nalgebra] version = "0.31" features = ["rand"] [dependencies.plotters] version = "0.3" optional = true [dependencies.plotters-backend] version = "0.3" optional = true [dependencies.rand] version = "0.8" features = ["small_rng"] default-features = false [dependencies.rayon] version = "1.5" [dependencies.serde] version = "1.0" features = ["derive"] optional = true [dependencies.statrs-fork] version = "0.17" [dev-dependencies.bincode] version = "1.3.3" [dev-dependencies.criterion] version = "0.3" features = ["html_reports"] [features] default = ["plot"] plot = [ "dep:plotters", "dep:plotters-backend", ] serde = [ "nalgebra/serde-serialize", "dep:serde", ]