-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (40 loc) · 1.12 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "gstools-core"
version = "1.0.0"
authors = ["Lennart Schüler <[email protected]>"]
edition = "2021"
description = "The core functions of GSTools"
readme = "README.md"
homepage = "https://geostat-framework.org/#gstools"
repository = "https://github.com/GeoStat-Framework/GSTools-Core"
documentation = "https://docs.rs/gstools-core"
license = "LGPL-3.0-or-later"
categories = ["science", "mathematics"]
keywords = ["geostatistics", "srf", "kriging", "variogram", "python"]
exclude = ["dist/", ".*"]
[lib]
name = "gstools_core"
crate-type = ["cdylib", "rlib"]
bench = false
[profile.release]
panic = "abort"
lto = true
codegen-units = 1
[profile.bench]
debug = true
lto = true
codegen-units = 1
[dependencies]
pyo3 = { version = "0.21", features = ["abi3-py310", "extension-module"] }
numpy = "0.21"
ndarray = { version = "0.15", features = ["rayon", "approx-0_5"] }
rayon = "1.10"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
approx = "0.5"
ndarray-rand = "0.14"
[[bench]]
name = "main"
harness = false
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "katex-header.html"]