ndhistogram 0.11.0

multi-dimensional histogramming for Rust
Documentation
# 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.80.0"
name = "ndhistogram"
version = "0.11.0"
authors = ["David Hadley <davehadley@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "multi-dimensional histogramming for Rust"
readme = "README.md"
keywords = [
    "histogram",
    "statistics",
    "data",
    "analysis",
    "multidimensional",
]
categories = [
    "science",
    "mathematics",
    "data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/davehadley/ndhistogram"

[package.metadata.docs.rs]
all-features = true

[features]
default = []

[lib]
name = "ndhistogram"
path = "src/lib.rs"
bench = false

[[example]]
name = "simple_histogram_1d"
path = "examples/simple_histogram_1d.rs"

[[example]]
name = "simple_histogram_2d"
path = "examples/simple_histogram_2d.rs"

[[test]]
name = "mod"
path = "tests/mod.rs"

[[test]]
name = "test_axes"
path = "tests/test_axes.rs"

[[test]]
name = "test_axis_nan_and_inf_value"
path = "tests/test_axis_nan_and_inf_value.rs"

[[test]]
name = "test_binrange"
path = "tests/test_binrange.rs"

[[test]]
name = "test_category_axis"
path = "tests/test_category_axis.rs"

[[test]]
name = "test_category_binrange"
path = "tests/test_category_binrange.rs"

[[test]]
name = "test_categorynoflow_axis"
path = "tests/test_categorynoflow_axis.rs"

[[test]]
name = "test_fill_overflow"
path = "tests/test_fill_overflow.rs"

[[test]]
name = "test_from_and_into_methods"
path = "tests/test_from_and_into_methods.rs"

[[test]]
name = "test_growable_histogram"
path = "tests/test_growable_histogram.rs"

[[test]]
name = "test_hashhistogram"
path = "tests/test_hashhistogram.rs"

[[test]]
name = "test_high_dimensional_axes"
path = "tests/test_high_dimensional_axes.rs"

[[test]]
name = "test_ndhistogram_1d"
path = "tests/test_ndhistogram_1d.rs"

[[test]]
name = "test_ndhistogram_1d_category"
path = "tests/test_ndhistogram_1d_category.rs"

[[test]]
name = "test_ndhistogram_2d"
path = "tests/test_ndhistogram_2d.rs"

[[test]]
name = "test_ndhistogram_binary_ops"
path = "tests/test_ndhistogram_binary_ops.rs"

[[test]]
name = "test_ndhistogram_display"
path = "tests/test_ndhistogram_display.rs"

[[test]]
name = "test_ndhistogram_macro"
path = "tests/test_ndhistogram_macro.rs"

[[test]]
name = "test_noflow_axis"
path = "tests/test_noflow_axis.rs"

[[test]]
name = "test_parallel_iterators"
path = "tests/test_parallel_iterators.rs"

[[test]]
name = "test_serialization"
path = "tests/test_serialization.rs"

[[test]]
name = "test_trait_object_safety"
path = "tests/test_trait_object_safety.rs"

[[test]]
name = "test_uniform_axis"
path = "tests/test_uniform_axis.rs"

[[test]]
name = "test_uniform_axis_integer"
path = "tests/test_uniform_axis_integer.rs"

[[test]]
name = "test_uniformcyclic_axis"
path = "tests/test_uniformcyclic_axis.rs"

[[test]]
name = "test_value_mean"
path = "tests/test_value_mean.rs"

[[test]]
name = "test_value_sum"
path = "tests/test_value_sum.rs"

[[test]]
name = "test_value_weightedmean"
path = "tests/test_value_weightedmean.rs"

[[test]]
name = "test_value_weightedsum"
path = "tests/test_value_weightedsum.rs"

[[test]]
name = "test_variable_axis"
path = "tests/test_variable_axis.rs"

[[test]]
name = "test_variablecyclic_axis"
path = "tests/test_variablecyclic_axis.rs"

[[test]]
name = "test_variablenoflow_axis"
path = "tests/test_variablenoflow_axis.rs"

[[test]]
name = "test_versions"
path = "tests/test_versions.rs"

[[bench]]
name = "bench_fill"
path = "benches/bench_fill.rs"
harness = false

[dependencies.num-traits]
version = "0.2"

[dependencies.rayon]
version = "1.6"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.paste]
version = "1.0"

[dev-dependencies.rand]
version = "0.8"

[dev-dependencies.rand_distr]
version = "0.4"

[dev-dependencies.rstest]
version = "0.23"

[dev-dependencies.serde_json]
version = "1.0"

[dev-dependencies.version-sync]
version = "0.9"