[package]
edition = "2021"
rust-version = "1.89"
name = "formoniq"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Finite Element Exterior Calculus (FEEC): PDEs formulated with differential forms and solved on simplicial pseudo-Riemannian manifolds of arbitrary dimension, intrinsically and coordinate-free."
readme = "README.md"
keywords = [
"feec",
"finite-element",
"differential-forms",
"pde",
]
categories = [
"mathematics",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/luiswirth/formoniq"
[lib]
name = "formoniq"
path = "src/lib.rs"
[[example]]
name = "dirac"
path = "examples/dirac.rs"
[[example]]
name = "evp"
path = "examples/evp.rs"
[[example]]
name = "heat"
path = "examples/heat.rs"
[[example]]
name = "minkowski_dirac"
path = "examples/minkowski_dirac.rs"
[[example]]
name = "source"
path = "examples/source.rs"
[[example]]
name = "wave"
path = "examples/wave.rs"
[[test]]
name = "boundary_conditions"
path = "tests/boundary_conditions.rs"
[[test]]
name = "fdm"
path = "tests/fdm.rs"
[[test]]
name = "fem3d"
path = "tests/fem3d.rs"
[[test]]
name = "hodge_theory"
path = "tests/hodge_theory.rs"
[[test]]
name = "ref_elmat"
path = "tests/ref_elmat.rs"
[dependencies.approx]
version = "0.5.1"
[dependencies.coorder]
version = "0.2.0"
[dependencies.derham]
version = "0.2.0"
[dependencies.exterior]
version = "0.2.0"
[dependencies.faer]
version = "0.24.4"
features = [
"std",
"sparse-linalg",
"rand",
"npy",
]
default-features = false
[dependencies.glatt]
version = "0.2.0"
[dependencies.gramian]
version = "0.2.0"
[dependencies.itertools]
version = "0.15.0"
[dependencies.multiindex]
version = "0.2.0"
[dependencies.nalgebra]
version = "0.35.0"
[dependencies.nalgebra-sparse]
version = "0.12.0"
[dependencies.rayon]
version = "1.12.0"
[dependencies.simplicial]
version = "0.2.0"
[dependencies.tracing]
version = "0.1.44"
[dev-dependencies.num-traits]
version = "0.2.19"
[dev-dependencies.tracing-subscriber]
version = "0.3.23"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.faer]
version = "0.24.4"
features = ["rayon"]