[package]
edition = "2024"
name = "conspire"
version = "0.7.1"
authors = [
"Michael R. Buche <mrbuche@sandia.gov>",
"Chad B. Hovey <chovey@sandia.gov>",
]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The Rust interface to conspire."
homepage = "https://mrbuche.github.io/conspire"
documentation = "https://docs.rs/crate/conspire"
readme = "README.md"
keywords = [
"conspire",
"mrbuche",
]
categories = [
"mathematics",
"science",
]
license = "GPL-3.0"
repository = "https://github.com/mrbuche/conspire.rs"
[package.metadata.docs.rs]
features = ["fem"]
rustdoc-args = [
"--html-in-header",
".github/katex.html",
]
[features]
all = [
"netcdf",
"vem",
]
constitutive = ["physics"]
doc = []
fem = [
"constitutive",
"geometry",
]
geometry = [
"io",
"math",
]
io = []
math = []
mechanics = ["math"]
netcdf = ["io"]
physics = ["mechanics"]
vem = ["fem"]
[lib]
name = "conspire"
path = "src/lib.rs"
[[test]]
name = "demonstration"
path = "tests/demonstration.rs"
[[test]]
name = "temporary"
path = "tests/temporary.rs"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage_nightly)"]
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = "symbols"