# 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 = "ninterp" version = "0.1.0" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Numerical interpolation in N-dimensions over a regular, sorted, nonrepeating grid" readme = "README.md" keywords = [ "interpolation", "multidimensional", "multilinear", "numerical", "approximation", ] categories = ["mathematics"] license = "BSD-3-Clause" repository = "https://github.com/NREL/ninterp" [lib] name = "ninterp" path = "src/lib.rs" [[bench]] name = "benchmark" path = "benches/benchmark.rs" harness = false [dependencies.itertools] version = "0.13.0" [dependencies.ndarray] version = "0.16.1" [dependencies.serde] version = "1.0.210" features = ["derive"] optional = true [dependencies.thiserror] version = "1.0.64" [dev-dependencies.criterion] version = "0.3" [dev-dependencies.rand] version = "0.8.5" [features] serde = [ "dep:serde", "ndarray/serde", ]