[package]
edition = "2024"
name = "conspire"
version = "0.5.13"
authors = ["Michael R. Buche <mrbuche@sandia.gov>"]
build = false
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]
constitutive = ["mechanics"]
doc = []
fem = ["constitutive"]
math = []
mechanics = ["math"]
vem = ["fem"]
[lib]
name = "conspire"
path = "src/lib.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"