ndarray-interp 0.6.0

Interpolation package for ndarray
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"
name = "ndarray-interp"
version = "0.6.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Interpolation package for ndarray"
readme = "README.md"
keywords = [
    "interpolation",
    "multidimensional",
    "linear",
    "bilinear",
    "cubic-spline",
]
categories = [
    "science",
    "algorithms",
    "mathematics",
]
license = "MIT"
repository = "https://github.com/jonasBoss/ndarray-interp"

[lib]
name = "ndarray_interp"
path = "src/lib.rs"

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

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

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

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

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

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

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

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

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

[[bench]]
name = "rand_extensions"
path = "benches/rand_extensions.rs"

[dependencies.ndarray]
version = "0.17"

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

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.approx]
version = "0.5"

[dev-dependencies.criterion]
version = "0.8.1"

[dev-dependencies.ndarray]
version = "0.17"
features = [
    "approx",
    "rayon",
]

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