# 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 believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] name = "rkm" version = "0.8.1" authors = ["Nick Sarten "] exclude = ["data/*"] description = "A generic k-means implementation" readme = "README.md" keywords = ["kmeans", "k-means", "means", "cluster", "clustering"] categories = ["algorithms", "science"] license = "MIT" repository = "https://github.com/genbattle/rkm" [lib] name = "rkm" path = "src/lib.rs" [[bin]] name = "rkm_example" path = "src/example.rs" [[bench]] name = "bench" path = "src/bench.rs" harness = false [dependencies.bencher] version = "0.1.5" [dependencies.csv] version = "1.1.3" [dependencies.ndarray] version = "0.12.1" [dependencies.ndarray-parallel] version = "0.9.0" optional = true [dependencies.num] version = "0.2.1" [dependencies.rand] version = "0.5.6" [dependencies.rayon] version = "1.0.3" optional = true [features] parallel = ["ndarray-parallel", "rayon"]