# 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" rust-version = "1.74.0" name = "ndarray-histogram" version = "0.4.0" authors = ["Rouven Spreckels "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Histogram support for n-dimensional arrays." documentation = "https://docs.rs/ndarray-histogram" readme = "README.md" keywords = [ "array", "multidimensional", "statistics", "matrix", "ndarray", ] categories = [ "data-structures", "science", ] license = "MIT OR Apache-2.0" repository = "https://github.com/qu1x/ndarray-histogram" [profile.test] opt-level = 2 [lib] name = "ndarray_histogram" path = "src/lib.rs" [[test]] name = "maybe_nan" path = "tests/maybe_nan.rs" [[test]] name = "quantile" path = "tests/quantile.rs" [[test]] name = "sort" path = "tests/sort.rs" [[bench]] name = "sort" path = "benches/sort.rs" harness = false [dependencies.itertools] version = "0.13.0" default-features = false [dependencies.ndarray] version = "0.16.1" [dependencies.ndarray-slice] version = "0.4.0" features = ["std"] default-features = false [dependencies.num-integer] version = "0.1.46" [dependencies.num-traits] version = "0.2.19" [dependencies.ordered-float] version = "4.2.2" [dependencies.rand] version = "0.8.5" [dependencies.rayon] version = "1.10.0" optional = true [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.quickcheck] version = "1.0.3" default-features = false [dev-dependencies.quickcheck_macros] version = "1.0.0" [features] default = ["ndarray-slice/stacker"] rayon = [ "dep:rayon", "ndarray-slice/rayon", "ndarray/rayon", ]