reducers 0.3.0

Rust-backed reductions for NumPy arrays (plain + NaN-aware)
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.84"
name = "reducers"
version = "0.3.0"
build = false
include = [
    "/Cargo.toml",
    "/Cargo.lock",
    "/README.md",
    "/src/**/*.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust-backed reductions for NumPy arrays (plain + NaN-aware)"
homepage = "https://ysbach.github.io/reducers/"
documentation = "https://docs.rs/reducers"
readme = "README.md"
keywords = [
    "numpy",
    "reduction",
    "statistics",
    "nan",
    "pyo3",
]
categories = [
    "algorithms",
    "science",
]
license = "MIT"
repository = "https://github.com/ysbach/reducers"

[features]
default = []
extension-module = [
    "python",
    "pyo3/extension-module",
]
python = [
    "dep:pyo3",
    "dep:numpy",
]

[lib]
name = "reducers"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

[dependencies.numpy]
version = "0.28"
optional = true

[dependencies.pyo3]
version = "0.28"
features = ["abi3-py310"]
optional = true

[dependencies.rayon]
version = "1.10"

[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1