-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (32 loc) · 1 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
[package]
authors = ["Chad B. Hovey <[email protected]>", "Michael R. Buche <[email protected]>"]
categories = ["mathematics", "science"]
description = "Automatic mesh generation."
documentation = "https://docs.rs/automesh"
edition = "2021"
homepage = "https://autotwin.github.io/automesh"
keywords = ["mesh"]
license = "GPL-3.0"
name = "automesh"
repository = "https://github.com/autotwin/automesh"
version = "0.2.10"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
clap = { version = "=4.5.26", features = ["derive"] }
chrono = "=0.4.39"
conspire = {version = "=0.5.2", features = ["math"]}
ndarray = {version = "=0.15.6"}
ndarray-npy = {version = "=0.8.1"}
netcdf = { version = "=0.10.5", features = ["ndarray", "static"] }
pyo3 = {version = "=0.23.4", features = ["extension-module"], optional = true}
tiff = "=0.9.1"
vtkio = "=0.6.3"
[features]
profile = []
python = ["dep:pyo3"]
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "docs/katex.html"]
[profile.release]
codegen-units = 1
lto = true