[package]
edition = "2021"
rust-version = "1.88"
name = "petektools"
version = "0.0.2"
authors = ["Kristian dF KollsgÄrd <kkollsg@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Standalone numerics & geostatistics kernels for Rust: scattered-data gridding (minimum-curvature, IDW, nearest) and a curated numeric front-door. Pure leaf; PyO3 bindings planned."
readme = "README.md"
keywords = [
"geostatistics",
"gridding",
"interpolation",
"numerics",
"subsurface",
]
categories = [
"science",
"mathematics",
]
license = "MIT"
repository = "https://github.com/kkollsga/petektools"
[lib]
name = "petektools"
path = "src/lib.rs"
[[test]]
name = "lattice_parity"
path = "tests/lattice_parity.rs"
[[bench]]
name = "gridding"
path = "benches/gridding.rs"
harness = false
[dependencies.ndarray]
version = "0.17"
[dependencies.rstar]
version = "0.13"
[dependencies.thiserror]
version = "2"
[dev-dependencies.approx]
version = "0.5"
[dev-dependencies.criterion]
version = "0.5"