# 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 = "2018" name = "meanshift-rs" version = "0.9.3" authors = ["Phillip Wenig "] description = "Rust version of the MeanShift clustering algorithm that does not need a predefined number of clusters." readme = "README.md" license = "MIT" repository = "https://github.com/wenig/meanshift-rs" [lib] name = "meanshift_rs" crate-type = [ "cdylib", "rlib", ] [dependencies.anyhow] version = "1.0.43" [dependencies.env_logger] version = "0.8" [dependencies.kdtree] version = "0.6.0" [dependencies.log] version = "0.4" [dependencies.ndarray] version = "0.15" features = ["rayon"] [dependencies.num-integer] version = "0.1.44" [dependencies.num-traits] version = "0.2.14" [dependencies.numpy] version = "0.17.2" optional = true [dependencies.pyo3] version = "0.17.2" features = ["extension-module"] optional = true [dependencies.rand] version = "0.8.5" [dependencies.rayon] version = "1.5.3" [dev-dependencies.csv] version = "1.1.6" [features] python = [ "pyo3", "numpy", ]