[package]
edition = "2021"
name = "gstools-core"
version = "1.3.0"
authors = ["Lennart Schüler <lennart.schueler@ufz.de>"]
build = false
exclude = [
"dist/",
".*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The core functions of GSTools"
homepage = "https://geostat-framework.org/#gstools"
documentation = "https://docs.rs/gstools-core"
readme = "README.md"
keywords = [
"geostatistics",
"srf",
"kriging",
"variogram",
"python",
]
categories = [
"science",
"mathematics",
]
license = "LGPL-3.0-or-later"
repository = "https://github.com/GeoStat-Framework/GSTools-Core"
[package.metadata.docs.rs]
rustdoc-args = [
"--html-in-header",
"katex-header.html",
]
[lib]
name = "gstools_core"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
bench = false
[[bench]]
name = "main"
path = "benches/main.rs"
harness = false
[dependencies.ndarray]
version = "0.17"
features = [
"rayon",
"approx",
]
[dependencies.numpy]
version = "0.28"
[dependencies.pyo3]
version = "0.28"
features = [
"abi3-py38",
"extension-module",
]
[dependencies.rayon]
version = "1.10"
[dev-dependencies.approx]
version = "0.5"
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.ndarray-rand]
version = "0.16"
[profile.bench]
lto = true
codegen-units = 1
debug = 2
[profile.release]
lto = true
codegen-units = 1
panic = "abort"